summaryrefslogtreecommitdiff
path: root/asl/annotations.hpp
blob: fc653782a11b74507672d38860c52b08a1f8d8ba (plain)
1
2
3
4
5
6
7
8
9
#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