More refactoring.

Change-Id: Iaf937feb0486d2f008a47584c0a75edccbde2b34
This commit is contained in:
Peter Johnson
2015-06-21 22:03:51 -07:00
parent c4d4679ed9
commit b88a9295bf
6 changed files with 54 additions and 25 deletions

View File

@@ -70,13 +70,7 @@ public:
return true;
}
bool ReadDouble(double *val)
{
char *buf;
if (!Read(&buf, 8)) return false;
*val = NtImpl::ReadDouble(buf);
return true;
}
bool ReadDouble(double *val);
bool ReadULEB128(unsigned long *val)
{