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 141d6d0 commit 46411c0Copy full SHA for 46411c0
src/dawn/node/NapiSymbols.cpp
@@ -26,11 +26,11 @@
26
#endif
27
28
#ifdef __clang__
29
-#define NAPI_SYMBOL(NAME) \
30
- __attribute__((weak)) void NAME() { \
31
- UNREACHABLE( \
32
- "#NAME is a weak stub, and should have been runtime replaced by the node " \
33
- "implementation"); \
+#define NAPI_SYMBOL(NAME) \
+ __attribute__((weak)) void NAME() { \
+ UNREACHABLE(#NAME \
+ " is a weak stub, and should have been runtime replaced" \
+ " by the node implementation"); \
34
}
35
#else
36
#define NAPI_SYMBOL(NAME)
0 commit comments