mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 08:16:05 +00:00
Suppress some warings in the tests.
llvm-svn: 131326
This commit is contained in:
parent
8a2548f6e0
commit
a7fa0710cb
@ -24,7 +24,7 @@ public:
|
||||
bool operator==(const Emplaceable& x) const
|
||||
{return int_ == x.int_ && double_ == x.double_;}
|
||||
bool operator<(const Emplaceable& x) const
|
||||
{return int_ < x.int_ || int_ == x.int_ && double_ < x.double_;}
|
||||
{return int_ < x.int_ || (int_ == x.int_ && double_ < x.double_);}
|
||||
|
||||
int get() const {return int_;}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user