Fix a compiler with the no_unique_address attribute, in C++03

This commit is contained in:
Laurent Rineau 2020-07-17 09:53:07 +02:00
parent 7248270fc3
commit ebdf7b2c04
1 changed files with 1 additions and 1 deletions

View File

@ -555,7 +555,7 @@ using std::max;
#endif
// Macro to specify [[no_unique_address]] if supported
#if __has_cpp_attribute(no_unique_address)
#if CGAL_CXX11 && __has_cpp_attribute(no_unique_address)
# define CGAL_NO_UNIQUE_ADDRESS [[no_unique_address]]
#else
# define CGAL_NO_UNIQUE_ADDRESS