diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2015-09-24 20:50:14 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2015-09-24 20:50:14 +0200 |
| commit | 9fc23bb173c4096cfbbb207823f7d5727fcb93b7 (patch) | |
| tree | fcad38ecdfc3599eba09e8d9c1cbabf77728a9ab /src | |
| parent | fb68c6f2f9fce05b6cb0e8f941790b891f86193e (diff) | |
| download | manager-9fc23bb173c4096cfbbb207823f7d5727fcb93b7.tar.gz manager-9fc23bb173c4096cfbbb207823f7d5727fcb93b7.zip | |
Fix ClientInfo::empty()
Diffstat (limited to 'src')
| -rw-r--r-- | src/ClientInfo.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientInfo.hpp b/src/ClientInfo.hpp index 1927088..1271096 100644 --- a/src/ClientInfo.hpp +++ b/src/ClientInfo.hpp @@ -124,7 +124,7 @@ public: inline bool empty() { - return *this != ClientInfo(); + return *this == ClientInfo(); } inline void clear() |
