summaryrefslogtreecommitdiff
path: root/asl/annotations.hpp
blob: a398e1356e016536bd3bc54f623fbbde2c233439 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include "asl/config.hpp"


#if ASL_COMPILER_CLANG_CL
    #define ASL_NO_UNIQUE_ADDRESS [[msvc::no_unique_address]]
#elif ASL_COMPILER_CLANG
    #define ASL_NO_UNIQUE_ADDRESS [[no_unique_address]]
#endif