summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-10-01 10:51:46 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-10-01 10:51:46 (GMT)
commit6e345232b3a88e51f45149b039e1a27230a0bc2a (patch)
tree87b9eafd0dec08da072804fbd8c73c382410fd39 /Swift/Controllers/Chat
parent3476833ca17c19dba0a31645d689f216039107dc (diff)
downloadswift-6e345232b3a88e51f45149b039e1a27230a0bc2a.zip
swift-6e345232b3a88e51f45149b039e1a27230a0bc2a.tar.bz2
Fixed cppcheck warnings.
Diffstat (limited to 'Swift/Controllers/Chat')
-rw-r--r--Swift/Controllers/Chat/ChatsManager.cpp2
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("");
}