mirror of https://github.com/CGAL/cgal
Fix a compiler with the no_unique_address attribute, in C++03
This commit is contained in:
parent
7248270fc3
commit
ebdf7b2c04
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue