Add FoldingSet profile method for bools. Patch by Ben Laurie!

llvm-svn: 64324
This commit is contained in:
Ted Kremenek 2009-02-11 20:53:17 +00:00
parent 74b7722c2c
commit 88ceac46de
1 changed files with 1 additions and 0 deletions

View File

@ -225,6 +225,7 @@ public:
void AddInteger(unsigned long I);
void AddInteger(long long I);
void AddInteger(unsigned long long I);
void AddBoolean(bool B) { AddInteger(B ? 1U : 0U); }
void AddString(const char* String, const char* End);
void AddString(const std::string &String);
void AddString(const char* String);