Index: src/vector.h |
diff --git a/src/vector.h b/src/vector.h |
index a23f9e6b71a83b7febee7d2c13a69e2d75c9c754..d3ba7759a62cd3157123f081cb6b56664eee781b 100644 |
--- a/src/vector.h |
+++ b/src/vector.h |
@@ -151,9 +151,9 @@ inline int StrLength(const char* string) { |
} |
-#define STATIC_ASCII_VECTOR(x) \ |
+#define STATIC_CHAR_VECTOR(x) \ |
v8::internal::Vector<const uint8_t>(reinterpret_cast<const uint8_t*>(x), \ |
- arraysize(x)-1) |
+ arraysize(x) - 1) |
inline Vector<const char> CStrVector(const char* data) { |
return Vector<const char>(data, StrLength(data)); |