Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Koch
dune-common
Commits
24d47a98
Commit
24d47a98
authored
14 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
revert accidential part of the commit...
- FielfVector uses int, not unsigned int [[Imported from SVN: r6168]]
parent
98b4af78
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/common/fvector.hh
+4
-7
4 additions, 7 deletions
dune/common/fvector.hh
with
4 additions
and
7 deletions
dune/common/fvector.hh
+
4
−
7
View file @
24d47a98
...
...
@@ -17,9 +17,9 @@
namespace
Dune
{
// forward declaration of template
template
<
class
K
,
unsigned
int
SIZE
>
class
FieldVector
;
template
<
class
K
,
int
SIZE
>
class
FieldVector
;
template
<
class
K
,
unsigned
int
SIZE
>
template
<
class
K
,
int
SIZE
>
struct
FieldTraits
<
FieldVector
<
K
,
SIZE
>
>
{
typedef
typename
FieldTraits
<
K
>::
field_type
field_type
;
...
...
@@ -40,7 +40,7 @@ namespace Dune {
* \tparam K the field type (use float, double, complex, etc)
* \tparam SIZE number of components.
*/
template
<
class
K
,
unsigned
int
SIZE
>
template
<
class
K
,
int
SIZE
>
class
FieldVector
:
public
DenseVector
<
Dune
::
array
<
K
,
SIZE
>
>
{
public:
...
...
@@ -82,7 +82,7 @@ namespace Dune {
*
* \returns the input stream (in)
*/
template
<
class
K
,
unsigned
int
SIZE
>
template
<
class
K
,
int
SIZE
>
inline
std
::
istream
&
operator
>>
(
std
::
istream
&
in
,
FieldVector
<
K
,
SIZE
>
&
v
)
{
...
...
@@ -94,9 +94,6 @@ namespace Dune {
return
in
;
}
// forward declarations
template
<
class
K
,
int
n
,
int
m
>
class
FieldMatrix
;
#ifndef DOXYGEN
/** \brief Vectors containing only one component
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment