00001 #ifndef ASG_TOOLS__DEPRECATED_H
00002 #define ASG_TOOLS__DEPRECATED_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #if __cplusplus < 201402L
00015 #define ASG_DEPRECATED(X) \
00016 __attribute__((deprecated(X)))
00017 #else
00018 #define ASG_DEPRECATED(X) \
00019 [[deprecated(X)]]
00020 #endif
00021
00022 #endif