diff options
author | Matt Liberty <matt.liberty@gmail.com> | 2013-11-03 22:43:22 -0800 |
---|---|---|
committer | Matt Liberty <matt.liberty@gmail.com> | 2013-11-03 22:43:22 -0800 |
commit | ecae4ba252c9b78d6b4fa6d14d2e694b8f71306a (patch) | |
tree | f2a8aaf923a222d223b0d4d86568864c802e2d76 /player.h | |
parent | 29ef933fda48f30a752e2dac2a8cb3f3d0f513b0 (diff) |
Make clang happy (for Mavericks)
Diffstat (limited to 'player.h')
-rw-r--r-- | player.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -100,14 +100,14 @@ private: bool m_racksAreKnown; }; -} - // comparison based on player ID inline bool operator<(const Quackle::Player &player1, const Quackle::Player &player2) { return player1.id() < player2.id(); } +} + inline bool operator==(const Quackle::Player &player1, const Quackle::Player &player2) { return player1.id() == player2.id(); |