Go to the documentation of this file.
22 #ifndef _BLAZE_SYSTEM_SIGNATURE_H_
23 #define _BLAZE_SYSTEM_SIGNATURE_H_
42 #if defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)
43 # define BLAZE_SIGNATURE __PRETTY_FUNCTION__
46 #elif defined(__GNUC__)
47 # define BLAZE_SIGNATURE __PRETTY_FUNCTION__
50 #elif defined(_MSC_VER)
51 # define BLAZE_SIGNATURE __FUNCSIG__
55 # define BLAZE_SIGNATURE "Unknown function"