aboutsummaryrefslogtreecommitdiff
path: root/system/gnome-commander/gcc47.patch
diff options
context:
space:
mode:
Diffstat (limited to 'system/gnome-commander/gcc47.patch')
-rw-r--r--system/gnome-commander/gcc47.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/system/gnome-commander/gcc47.patch b/system/gnome-commander/gcc47.patch
deleted file mode 100644
index 5960379c723ea..0000000000000
--- a/system/gnome-commander/gcc47.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -Naur gnome-commander-20120801_2f83e80.orig/src/gnome-cmd-collection.h gnome-commander-20120801_2f83e80/src/gnome-cmd-collection.h
---- gnome-commander-20120801_2f83e80.orig/src/gnome-cmd-collection.h 2012-08-01 21:05:40.000000000 +0200
-+++ gnome-commander-20120801_2f83e80/src/gnome-cmd-collection.h 2012-09-28 20:41:46.264480154 +0200
-@@ -35,9 +35,9 @@
- template <typename T>
- struct Collection<T *>: std::set<T *>
- {
-- void add(T *t) { insert(t); }
-- void remove(T *t) { erase(t); }
-- bool contain(T *t) const { return find(t)!=Collection::end(); }
-+ void add(T *t) { this->insert(t); }
-+ void remove(T *t) { this->erase(t); }
-+ bool contain(T *t) const { return this->find(t)!=Collection::end(); }
-
- GList *get_list();
- };