Go to the documentation of this file. 35 #ifndef _BLAZE_SYSTEM_DEPRECATED_H_ 36 #define _BLAZE_SYSTEM_DEPRECATED_H_ 53 #if (defined __GNUC__) || (defined __PGI) || (defined __IBMCPP__) 54 # define BLAZE_DEPRECATED( func ) func __attribute__((deprecated)) 57 #elif (defined _MSC_VER) 58 # define BLAZE_DEPRECATED( func ) __declspec(deprecated) func 62 # error Compiler-specific deprecated tag undefined!