Suppress some warings in the tests.

llvm-svn: 131326
This commit is contained in:
Howard Hinnant 2011-05-13 23:59:50 +00:00
parent 8a2548f6e0
commit a7fa0710cb

View File

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