mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-22 03:48:57 +00:00
Don't erase these methods. They're used during testing.
llvm-svn: 173636
This commit is contained in:
parent
89179c02f8
commit
fefacc5936
@ -134,6 +134,9 @@ public:
|
||||
bool operator==(AttrKind K) const;
|
||||
bool operator!=(AttrKind K) const;
|
||||
|
||||
bool operator==(Attribute A) const { return pImpl == A.pImpl; }
|
||||
bool operator!=(Attribute A) const { return pImpl != A.pImpl; }
|
||||
|
||||
/// \brief Less-than operator. Useful for sorting the attributes list.
|
||||
bool operator<(Attribute A) const;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user