diff options
Diffstat (limited to 'runtime/utils.h')
-rw-r--r-- | runtime/utils.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/utils.h b/runtime/utils.h index d1be51aff7..16835c2902 100644 --- a/runtime/utils.h +++ b/runtime/utils.h @@ -294,9 +294,6 @@ void Push32(std::vector<uint8_t, Alloc>* buf, int32_t data) { buf->push_back((data >> 24) & 0xff); } -void EncodeUnsignedLeb128(uint32_t data, std::vector<uint8_t>* buf); -void EncodeSignedLeb128(int32_t data, std::vector<uint8_t>* buf); - // Deleter using free() for use with std::unique_ptr<>. See also UniqueCPtr<> below. struct FreeDelete { // NOTE: Deleting a const object is valid but free() takes a non-const pointer. |