Index: src/globals.h |
diff --git a/src/globals.h b/src/globals.h |
index eec83edaaea81afe36b80fd042574ff7e4bd8c10..0d02f77fd6327b48bff16aff675cbb72e94a5389 100644 |
--- a/src/globals.h |
+++ b/src/globals.h |
@@ -272,8 +272,7 @@ template <typename T, class P = FreeStoreAllocationPolicy> class List; |
// The Strict Mode (ECMA-262 5th edition, 4.2.2). |
-enum LanguageMode { SLOPPY, STRICT, LANGUAGE_END = 3 }; |
- |
+enum LanguageMode : uint32_t { SLOPPY, STRICT, LANGUAGE_END }; |
inline std::ostream& operator<<(std::ostream& os, const LanguageMode& mode) { |
switch (mode) { |