Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Backofen, Rainer
amdis
Commits
508c68fa
Commit
508c68fa
authored
Nov 20, 2013
by
Praetorius, Simon
Browse files
c++11 detection updated
parent
0a396e07
Changes
1
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/Global.h
View file @
508c68fa
...
...
@@ -37,11 +37,13 @@
#define OPENMODE std::ios::open_mode
#endif
#include
<boost/config.hpp>
// TODO: better c++11 test!
#if (defined BOOST_NO_CXX11_OVERRIDE) || __cplusplus <= 199711L || ((defined _MSC_VER) && _MSC_VER < 1100)
#define override
#endif
#if (defined BOOST_NO_CXX11_NULLPTR) || __cplusplus <= 199711L
#if (defined BOOST_NO_CXX11_NULLPTR)
//
|| __cplusplus <= 199711L
#define nullptr NULL
#endif
...
...
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