We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8133db commit e3b1c76Copy full SHA for e3b1c76
deps/v8/third_party/simdutf/simdutf.h
@@ -2,6 +2,10 @@
2
/* begin file include/simdutf.h */
3
#ifndef SIMDUTF_H
4
#define SIMDUTF_H
5
+
6
+// Rename namespace to avoid conflict with simdutf from V8.
7
+#define simdutf node_simdutf
8
9
#include <cstring>
10
11
/* begin file include/simdutf/compiler_check.h */
src/node_metadata.cc
@@ -48,6 +48,10 @@
48
#include <unicode/uversion.h>
49
#endif // NODE_HAVE_I18N_SUPPORT
50
51
+#ifdef simdutf
52
+#undef simdutf
53
+#endif
54
55
namespace node {
56
57
namespace per_process {
0 commit comments