Fix up naming of Base64 and Leb128 functions.

Change-Id: I80a2493d822b59311ba0d7bd68b5ccf0e3b29e6a
This commit is contained in:
Peter Johnson
2015-06-25 23:19:24 -07:00
parent d7ca3343bc
commit de4ba1aa35
11 changed files with 39 additions and 37 deletions

View File

@@ -70,7 +70,9 @@ class WireDecoder {
bool ReadDouble(double* val);
bool ReadULEB128(unsigned long* val) { return read_uleb128(m_is, val); }
bool ReadUleb128(unsigned long* val) {
return ntimpl::ReadUleb128(m_is, val);
}
bool ReadType(NT_Type* type);
bool ReadValue(NT_Type type, NT_Value* value);