Go to the documentation of this file.
35 #ifndef _BLAZE_SYSTEM_SIGNATURE_H_
36 #define _BLAZE_SYSTEM_SIGNATURE_H_
55 #if defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)
56 # define BLAZE_SIGNATURE __PRETTY_FUNCTION__
59 #elif defined(__GNUC__)
60 # define BLAZE_SIGNATURE __PRETTY_FUNCTION__
63 #elif defined(_MSC_VER)
64 # define BLAZE_SIGNATURE __FUNCSIG__
68 # define BLAZE_SIGNATURE "Unknown function"