Go to the documentation of this file. 5 #ifndef DUNE_COMMON_STD_NO_UNIQUE_ADDRESS_HH 6 #define DUNE_COMMON_STD_NO_UNIQUE_ADDRESS_HH 8 #if __has_include(<version>) 16 #if _MSC_VER >= 1929 // VS2019 v16.10 and later 17 #define DUNE_NO_UNIQUE_ADDRESS [[msvc::no_unique_address]] 18 #else // no-op in MSVC v14x ABI 19 #define DUNE_NO_UNIQUE_ADDRESS 21 #elif __has_cpp_attribute(no_unique_address) >= 201803L 22 #define DUNE_NO_UNIQUE_ADDRESS [[no_unique_address]] 24 #define DUNE_NO_UNIQUE_ADDRESS 27 #endif // DUNE_COMMON_STD_NO_UNIQUE_ADDRESS_HH