Skip to content
Snippets Groups Projects
Commit 0e829e99 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

remove code causing deprecation warning (we require c++14 anyway)

parent 71d71376
No related branches found
No related tags found
No related merge requests found
...@@ -197,7 +197,7 @@ static Counts& counts() { ...@@ -197,7 +197,7 @@ static Counts& counts() {
// workaround missing "is_trivially_copyable" in g++ < 5.0 // workaround missing "is_trivially_copyable" in g++ < 5.0
// See https://stackoverflow.com/a/31798726/48181 // See https://stackoverflow.com/a/31798726/48181
#if defined(__GNUC__) && __GNUC__ < 5 #if 0 //defined(__GNUC__) && __GNUC__ < 5
# define ROBIN_HOOD_IS_TRIVIALLY_COPYABLE(...) __has_trivial_copy(__VA_ARGS__) # define ROBIN_HOOD_IS_TRIVIALLY_COPYABLE(...) __has_trivial_copy(__VA_ARGS__)
#else #else
# define ROBIN_HOOD_IS_TRIVIALLY_COPYABLE(...) std::is_trivially_copyable<__VA_ARGS__>::value # define ROBIN_HOOD_IS_TRIVIALLY_COPYABLE(...) std::is_trivially_copyable<__VA_ARGS__>::value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment