Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
code
pugs
Commits
a64ea758
Commit
a64ea758
authored
2 years ago
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Add missing includes for compilation with clang-14 and g++-12
parent
ee3b3916
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/analysis/CMakeLists.txt
+7
-0
7 additions, 0 deletions
src/analysis/CMakeLists.txt
src/language/modules/BuiltinModule.hpp
+1
-0
1 addition, 0 deletions
src/language/modules/BuiltinModule.hpp
src/language/utils/ASTNodeDataType.hpp
+2
-1
2 additions, 1 deletion
src/language/utils/ASTNodeDataType.hpp
with
10 additions
and
1 deletion
src/analysis/CMakeLists.txt
+
7
−
0
View file @
a64ea758
...
@@ -11,3 +11,10 @@ add_library(
...
@@ -11,3 +11,10 @@ add_library(
TensorialGaussLobattoQuadrature.cpp
TensorialGaussLobattoQuadrature.cpp
TetrahedronGaussQuadrature.cpp
TetrahedronGaussQuadrature.cpp
TriangleGaussQuadrature.cpp
)
TriangleGaussQuadrature.cpp
)
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"GNU"
)
if
((
CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL
"12.0.0"
)
AND
(
CMAKE_CXX_COMPILER_VERSION VERSION_LESS
"13.0.0"
))
# Deactivated since it produces false positive warning in this file only ...
set_source_files_properties
(
PyramidGaussQuadrature.cpp PROPERTIES COMPILE_FLAGS
"-Wno-array-bounds"
)
endif
()
endif
()
This diff is collapsed.
Click to expand it.
src/language/modules/BuiltinModule.hpp
+
1
−
0
View file @
a64ea758
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
#include
<utils/Exceptions.hpp>
#include
<utils/Exceptions.hpp>
#include
<functional>
#include
<sstream>
#include
<sstream>
class
IBuiltinFunctionEmbedder
;
class
IBuiltinFunctionEmbedder
;
...
...
This diff is collapsed.
Click to expand it.
src/language/utils/ASTNodeDataType.hpp
+
2
−
1
View file @
a64ea758
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
#include
<utils/PugsAssert.hpp>
#include
<utils/PugsAssert.hpp>
#include
<array>
#include
<limits>
#include
<limits>
#include
<memory>
#include
<memory>
#include
<string>
#include
<string>
...
...
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