summaryrefslogtreecommitdiff
path: root/dev-util/codeblocks/files/codeblocks-20.03_gcc11_compatibility.patch
blob: 46c8643e9c940fb77bc043ca7bf269b855e2ef71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff -Naur a/src/plugins/openfileslist/openfileslistplugin.h b/src/plugins/openfileslist/openfileslistplugin.h
--- a/src/plugins/openfileslist/openfileslistplugin.h	2020-10-13 20:35:57.000000000 +0300
+++ b/src/plugins/openfileslist/openfileslistplugin.h	2020-10-13 20:37:37.000000000 +0300
@@ -23,7 +23,7 @@
     // Functor for the std::set predicate to sort the opened editor files according to their tab order
     struct compareLess
     {
-        bool operator()(const ProjectFile* lhs, const ProjectFile* rhs) { return lhs->editorTabPos < rhs->editorTabPos; }
+        bool operator()(const ProjectFile* lhs, const ProjectFile* rhs) const { return lhs->editorTabPos < rhs->editorTabPos; }
     };
     typedef std::set<ProjectFile*, compareLess> OpenFilesSet;
     ProjectFile* activeFile;