Skip to content
Snippets Groups Projects
Commit 5dcd8777 authored by Emmanuel Lepage's avatar Emmanuel Lepage
Browse files

[ #10222 ] Fix warnings

parent 2329fc3d
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ public: ...@@ -63,7 +63,7 @@ public:
SortableCallSource(Call* call=0) : count(0),callInfo(call) {} SortableCallSource(Call* call=0) : count(0),callInfo(call) {}
uint count; uint count;
Call* callInfo; Call* callInfo;
const bool operator<(SortableCallSource other) { bool operator<(SortableCallSource other) {
return (other.count > count); return (other.count > count);
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment