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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
Core Modules
dune-common
Merge requests
!21
Feature/fix shadow warnings
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/fix shadow warnings
feature/fix-shadow-warnings
into
master
Overview
11
Commits
2
Pipelines
0
Changes
4
Merged
Christoph Grüninger
requested to merge
feature/fix-shadow-warnings
into
master
9 years ago
Overview
11
Commits
2
Pipelines
0
Changes
4
Expand
If you have better name suggestions, please tell me and I change the names.
0
0
Merge request reports
Viewing commit
09d70bfe
Prev
Next
Show latest version
4 files
+
29
−
27
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
09d70bfe
Fix Wshadow warnings in test code
· 09d70bfe
Christoph Grüninger
authored
9 years ago
dune/common/test/dynmatrixtest.cc
+
5
−
5
Options
@@ -300,11 +300,11 @@ void test_matrix()
DUNE_THROW
(
FMatrixError
,
"Axpy test failed!"
);
}
{
DynamicMatrix
<
K
>
A
(
n
,
n
+
1
);
for
(
size_type
i
=
0
;
i
<
A
.
N
();
++
i
)
for
(
size_type
j
=
0
;
j
<
A
.
M
();
++
j
)
A
[
i
][
j
]
=
i
;
const
DynamicMatrix
<
K
>&
Aref
DUNE_UNUSED
=
A
;
DynamicMatrix
<
K
>
A
2
(
n
,
n
+
1
);
for
(
size_type
i
=
0
;
i
<
A
2
.
N
();
++
i
)
for
(
size_type
j
=
0
;
j
<
A
2
.
M
();
++
j
)
A
2
[
i
][
j
]
=
i
;
const
DynamicMatrix
<
K
>&
Aref
DUNE_UNUSED
=
A
2
;
DynamicMatrix
<
K
>
B
(
n
+
1
,
n
+
1
);
Loading