Implemented serialization of signed integers.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43828 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek
2007-11-07 18:24:34 +00:00
parent 29121848b9
commit 2e6452ca0c
5 changed files with 41 additions and 2 deletions

View File

@ -95,6 +95,8 @@ public:
~Deserializer();
uint64_t ReadInt();
int64_t ReadSInt();
bool ReadBool() {
return ReadInt() ? true : false;
}