summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_04.patch')
-rw-r--r--dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_04.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_04.patch b/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_04.patch
new file mode 100644
index 0000000..bc76e0c
--- /dev/null
+++ b/dev-games/crystalspace/files/crystalspace-2.0-fix_unqualified_calls_04.patch
@@ -0,0 +1,20 @@
+--- include/csutil/redblacktree.h.ori 2012-07-18 17:23:56.847708962 +0200
++++ include/csutil/redblacktree.h 2012-07-18 17:26:29.221050599 +0200
+@@ -1155,7 +1155,7 @@
+ T* Put (const K& key, const T &value)
+ {
+ csRedBlackTreePayload<K, T>* payload = (csRedBlackTreePayload<K, T>*)
+- Insert (csRedBlackTreePayload<K, T>(key, value));
++ this->Insert (csRedBlackTreePayload<K, T>(key, value));
+ return (payload != 0) ? &payload->GetValue() : 0;
+ }
+ /**
+@@ -1194,7 +1194,7 @@
+ */
+ const T& Get (const K& key, const T& fallback) const
+ {
+- const csRedBlackTreePayload<K, T>* payload = Find (key);
++ const csRedBlackTreePayload<K, T>* payload = this->Find (key);
+ if (payload == 0) return fallback;
+ return payload->GetValue();
+ }