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
Markus Holzer
waLBerla
Commits
f5566e31
Commit
f5566e31
authored
Apr 26, 2019
by
Michael Kuron
Browse files
Don't use __has_include macro if it's not defined
parent
19ef0b2a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/core/DataTypes.h
View file @
f5566e31
...
...
@@ -30,10 +30,12 @@
#include
<cmath>
#include
<limits>
#if (defined( __has_include ) && __has_include(<cxxabi.h>)) || defined( __GLIBCXX__ )
#if defined( __has_include ) || defined( __GLIBCXX__ )
#if __has_include(<cxxabi.h>) || defined( __GLIBCXX__ )
#define HAVE_CXXABI_H
#include
<cxxabi.h>
#endif
#endif
namespace
walberla
{
...
...
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