summaryrefslogtreecommitdiff
path: root/dev-util/codeblocks/files/codeblocks-20.03_gcc11_compatibility.patch
diff options
context:
space:
mode:
authorSergey Torokhov <torokhov-s-a@yandex.ru>2022-05-09 01:34:58 +0300
committerSam James <sam@gentoo.org>2022-05-13 20:03:55 +0000
commita9e3756de249e709bc29ef602f2c099b88163c22 (patch)
tree42c7c08b51974394f1b77c8b91779792c92b0ed3 /dev-util/codeblocks/files/codeblocks-20.03_gcc11_compatibility.patch
parent97e71000c7110fb7d5827963a20f8f77c36074ee (diff)
downloadgentoo-a9e3756de249e709bc29ef602f2c099b88163c22.tar.gz
gentoo-a9e3756de249e709bc29ef602f2c099b88163c22.tar.bz2
gentoo-a9e3756de249e709bc29ef602f2c099b88163c22.zip
dev-util/codeblocks: cleanup old 17.12-r*, <=20.03-r3
Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/codeblocks/files/codeblocks-20.03_gcc11_compatibility.patch')
-rw-r--r--dev-util/codeblocks/files/codeblocks-20.03_gcc11_compatibility.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/dev-util/codeblocks/files/codeblocks-20.03_gcc11_compatibility.patch b/dev-util/codeblocks/files/codeblocks-20.03_gcc11_compatibility.patch
deleted file mode 100644
index 46c8643e9c94..000000000000
--- a/dev-util/codeblocks/files/codeblocks-20.03_gcc11_compatibility.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-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;