We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28e71ed commit 260d8d9Copy full SHA for 260d8d9
src/util.h
@@ -162,8 +162,12 @@ void DumpJavaScriptBacktrace(FILE* fp);
162
#else
163
#define LIKELY(expr) expr
164
#define UNLIKELY(expr) expr
165
+#if defined(_MSC_VER)
166
+#define PRETTY_FUNCTION_NAME __FUNCSIG__
167
+#else
168
#define PRETTY_FUNCTION_NAME ""
169
#endif
170
+#endif
171
172
#define STRINGIFY_(x) #x
173
#define STRINGIFY(x) STRINGIFY_(x)
0 commit comments