Index: src/utils.h |
diff --git a/src/utils.h b/src/utils.h |
index e008c85f59a7799db75e73b1d5adc15886fe8db8..0febe4a8d45e5156544b5efc11534e0d0947c55f 100644 |
--- a/src/utils.h |
+++ b/src/utils.h |
@@ -527,7 +527,7 @@ class StringBuilder { |
template <typename sourcechar, typename sinkchar> |
static inline void CopyChars(sinkchar* dest, const sourcechar* src, int chars) { |
sinkchar* limit = dest + chars; |
-#ifdef CAN_READ_UNALIGNED |
+#ifdef V8_HOST_CAN_READ_UNALIGNED |
if (sizeof(*dest) == sizeof(*src)) { |
// Number of characters in a uint32_t. |
static const int kStepSize = sizeof(uint32_t) / sizeof(*dest); // NOLINT |