Index: src/wasm/leb-helper.h |
diff --git a/src/wasm/leb-helper.h b/src/wasm/leb-helper.h |
index 7ba244d8586683f2cde82df15608403303a8a3c2..0e4ba3418c3ba87ccc6298b69b3a3e7bc99d0a87 100644 |
--- a/src/wasm/leb-helper.h |
+++ b/src/wasm/leb-helper.h |
@@ -9,6 +9,9 @@ namespace v8 { |
namespace internal { |
namespace wasm { |
+static const size_t kPaddedVarInt32Size = 5; |
+static const size_t kMaxVarInt32Size = 5; |
+ |
class LEBHelper { |
public: |
// Write a 32-bit unsigned LEB to {dest}, updating {dest} to point after |