mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-19 16:35:10 +00:00
Add FoldingSet profile method for bools. Patch by Ben Laurie!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64324 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dce5e74162
commit
8bb332d45d
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user