Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CLHEP
CLHEP
Commits
f79e3d99
Commit
f79e3d99
authored
Mar 14, 2018
by
Lynn Garren
Browse files
fix typo
parent
d4eb2400
Changes
2
Hide whitespace changes
Inline
Side-by-side
Utility/Utility/atomic_int.h
View file @
f79e3d99
...
...
@@ -5,6 +5,7 @@
//
// Use std::atomic when the compiler declares it uses the C++11 standard
//
// on macOS, atomic is available starting with Sierra (Darwin 16)
// ======================================================================
#if __cplusplus >= 201103L
...
...
@@ -13,7 +14,6 @@
#include
<atomic>
#define CLHEP_ATOMIC_INT_TYPE std::atomic<int>
#elif __clang__
# on macOS, atomic is available starting with Sierra (Darwin 16)
#if __has_feature(c_atomic)
#include
<atomic>
#define CLHEP_ATOMIC_INT_TYPE std::atomic<int>
...
...
Utility/Utility/use_atomic.h
View file @
f79e3d99
...
...
@@ -5,6 +5,7 @@
//
// Use std::atomic when the compiler declares it uses the C++11 standard
//
// on macOS, atomic is available starting with Sierra (Darwin 16)
// ======================================================================
#if __cplusplus >= 201103L
...
...
@@ -13,7 +14,6 @@
#include
<atomic>
#define CLHEP_USE_ATOMIC
#elif __clang__
# on macOS, atomic is available starting with Sierra (Darwin 16)
#if __has_feature(c_atomic)
#include
<atomic>
#define CLHEP_USE_ATOMIC
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment