VCCC  2024.05
VisualCamp Common C++ library
no_unique_address.hpp
Go to the documentation of this file.
1 //
2 // Created by yonggyulee on 2024/01/04.
3 //
4 
5 #ifndef VCCC_CORE_NO_UNIQUE_ADDRESS_HPP
6 #define VCCC_CORE_NO_UNIQUE_ADDRESS_HPP
7 
8 #if __cplusplus < 202002L
9 #define VCCC_NO_UNIQUE_ADDRESS
10 #else
11 #define VCCC_NO_UNIQUE_ADDRESS [[no_unique_address]]
12 #endif
13 
14 #endif // VCCC_CORE_NO_UNIQUE_ADDRESS_HPP