Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CLHEP
CLHEP
Commits
a0d04f78
Commit
a0d04f78
authored
Nov 08, 2012
by
Lynn Garren
Browse files
pragma push and pop need gcc 4.7 or later
parent
4d73ccd0
Changes
3
Hide whitespace changes
Inline
Side-by-side
GenericFunctions/GenericFunctions/ButcherTableau.icc
View file @
a0d04f78
...
...
@@ -21,7 +21,7 @@ namespace Genfun {
// don't generate warnings about intentional shadowing
#if defined __GNUC__
#if __GNUC__ > 3 && __GNUC_MINOR__ >
5
#if __GNUC__ > 3 && __GNUC_MINOR__ >
6
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#endif
...
...
@@ -53,7 +53,7 @@ namespace Genfun {
}
#if defined __GNUC__
#if __GNUC__ > 3 && __GNUC_MINOR__ >
5
#if __GNUC__ > 3 && __GNUC_MINOR__ >
6
#pragma GCC diagnostic pop
#endif
#endif
...
...
GenericFunctions/GenericFunctions/ExtendedButcherTableau.icc
View file @
a0d04f78
...
...
@@ -30,7 +30,7 @@ namespace Genfun {
// don't generate warnings about intentional shadowing
#if defined __GNUC__
#if __GNUC__ > 3 && __GNUC_MINOR__ >
5
#if __GNUC__ > 3 && __GNUC_MINOR__ >
6
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow"
#endif
...
...
@@ -62,7 +62,7 @@ namespace Genfun {
}
#if defined __GNUC__
#if __GNUC__ > 3 && __GNUC_MINOR__ >
5
#if __GNUC__ > 3 && __GNUC_MINOR__ >
6
#pragma GCC diagnostic pop
#endif
#endif
...
...
Utility/Utility/memory.h
View file @
a0d04f78
...
...
@@ -1487,7 +1487,7 @@ do_nothing_deleter::operator () ( void const * ) const
#if defined __GNUC__
#if __GNUC__ > 3 && __GNUC_MINOR__ >
5
#if __GNUC__ > 3 && __GNUC_MINOR__ >
6
#pragma GCC diagnostic pop
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment