Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 6edeb839da5ced492618dee7455af0594b2be0c0..52cc36806f321ba2d7bc74f7efc3138eb1e023c4 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -1622,7 +1622,7 @@ class Smi: public Object { |
V8_EXPORT_PRIVATE void SmiPrint(std::ostream& os) const; // NOLINT |
DECLARE_VERIFIER(Smi) |
- V8_EXPORT_PRIVATE static Smi* const kZero; |
+ static constexpr Smi* const kZero = nullptr; |
static const int kMinValue = |
(static_cast<unsigned int>(-1)) << (kSmiValueSize - 1); |
static const int kMaxValue = -(kMinValue + 1); |