1 #pragma once2 3 #include <string>4 5 6 #ifdef _MSC_VER7 #define NOINLINE __declspec(noinline)8 #else9 #define NOINLINE __attribute__((noinline))10 #endif11 12 std::string [GetCallstack](const char *indent = "", const char *ignoreFilter = 0); Go back to previous page