1 #pragma once
2
3 #include <string>
4
5 // Sometimes we want an explicit function call to occur, especially when related to operating with callstack fetching.
6 #ifdef _MSC_VER
7 #define NOINLINE __declspec(noinline)
8 #else
9 #define NOINLINE __attribute__((noinline))
10 #endif
11
12 std::string GetCallstack(const char *indent = ""const char *ignoreFilter = 0);

Go back to previous page