diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-10-01 10:51:46 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-10-01 10:51:46 (GMT) |
commit | 6e345232b3a88e51f45149b039e1a27230a0bc2a (patch) | |
tree | 87b9eafd0dec08da072804fbd8c73c382410fd39 /Swift/Controllers | |
parent | 3476833ca17c19dba0a31645d689f216039107dc (diff) | |
download | swift-contrib-6e345232b3a88e51f45149b039e1a27230a0bc2a.zip swift-contrib-6e345232b3a88e51f45149b039e1a27230a0bc2a.tar.bz2 |
Fixed cppcheck warnings.
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/Chat/ChatsManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/Chat/ChatsManager.cpp b/Swift/Controllers/Chat/ChatsManager.cpp index edc1a79..47a65a8 100644 --- a/Swift/Controllers/Chat/ChatsManager.cpp +++ b/Swift/Controllers/Chat/ChatsManager.cpp @@ -114,7 +114,7 @@ void ChatsManager::saveRecents() { foreach (ChatListWindow::Chat chat, recentChats_) { std::vector<std::string> activity; boost::split(activity, chat.activity, boost::is_any_of("\t\n")); - if (activity.size() == 0) { + if (activity.empty()) { /* Work around Boost bug https://svn.boost.org/trac/boost/ticket/4751 */ activity.push_back(""); } |