summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2015-09-24 20:50:14 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2015-09-24 20:50:14 +0200
commit9fc23bb173c4096cfbbb207823f7d5727fcb93b7 (patch)
treefcad38ecdfc3599eba09e8d9c1cbabf77728a9ab /src
parentfb68c6f2f9fce05b6cb0e8f941790b891f86193e (diff)
downloadmanager-9fc23bb173c4096cfbbb207823f7d5727fcb93b7.tar.gz
manager-9fc23bb173c4096cfbbb207823f7d5727fcb93b7.zip
Fix ClientInfo::empty()
Diffstat (limited to 'src')
-rw-r--r--src/ClientInfo.hpp2
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()