summaryrefslogtreecommitdiff
path: root/asl/annotations.hpp
blob: 6ea3a8463b248df377d638ffe966ccd1ddc9ccdd (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