From 5dcd87771b7eab7e67c6e4d5613593f33f495d88 Mon Sep 17 00:00:00 2001 From: Emmanuel Lepage <emmanuel.lepage@savoirfairelinux.com> Date: Mon, 7 May 2012 18:06:47 -0400 Subject: [PATCH] [ #10222 ] Fix warnings --- src/CallModel.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CallModel.hpp b/src/CallModel.hpp index 5a1719c4..a611b239 100644 --- a/src/CallModel.hpp +++ b/src/CallModel.hpp @@ -63,7 +63,7 @@ public: SortableCallSource(Call* call=0) : count(0),callInfo(call) {} uint count; Call* callInfo; - const bool operator<(SortableCallSource other) { + bool operator<(SortableCallSource other) { return (other.count > count); } }; -- GitLab