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

#include "asl/base/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