Don't erase these methods. They're used during testing.

llvm-svn: 173636
This commit is contained in:
Bill Wendling 2013-01-27 22:46:17 +00:00
parent 89179c02f8
commit fefacc5936

View File

@ -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;