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
Commits
e16cc5f7
Commit
e16cc5f7
authored
1 year ago
by
Ansgar Burchardt
Browse files
Options
Downloads
Plain Diff
Merge branch 'cherry-pick-
825f70ca
' into 'releases/2.9'
Merge branch 'fix-gcc-13-on-i386' into 'master' See merge request
!1328
parents
0821b632
2663e9ee
No related branches found
No related tags found
1 merge request
!1328
Merge branch 'fix-gcc-13-on-i386' into 'master'
Pipeline
#67064
passed
1 year ago
Stage: .pre
Stage: test
Stage: downstream
Pipeline: Dune Nightly Test
#67066
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/common/test/hybridutilitiestest.cc
+2
-2
2 additions, 2 deletions
dune/common/test/hybridutilitiestest.cc
with
2 additions
and
2 deletions
dune/common/test/hybridutilitiestest.cc
+
2
−
2
View file @
e16cc5f7
...
...
@@ -110,8 +110,8 @@ int main()
// Compile time checks
static_assert
(
sum
(
values
)
==
(
30
*
29
)
/
2
,
"Wrong compile time sum!"
);
constexpr
auto
numberTupleConstexpr
=
Dune
::
makeTupleVector
(
0.
1
,
2
,
3
);
static_assert
(
sum
(
numberTupleConstexpr
)
==
5.
1
,
"Wrong compile time sum!"
);
constexpr
auto
numberTupleConstexpr
=
Dune
::
makeTupleVector
(
0.
25
,
2
,
3
);
static_assert
(
sum
(
numberTupleConstexpr
)
==
5.
25
,
"Wrong compile time sum!"
);
return
test
.
exit
();
}
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