aboutsummaryrefslogtreecommitdiff
path: root/games/rtb/files/patch-include::List.h
diff options
context:
space:
mode:
Diffstat (limited to 'games/rtb/files/patch-include::List.h')
-rw-r--r--games/rtb/files/patch-include::List.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/games/rtb/files/patch-include::List.h b/games/rtb/files/patch-include::List.h
deleted file mode 100644
index 324c09e88897..000000000000
--- a/games/rtb/files/patch-include::List.h
+++ /dev/null
@@ -1,29 +0,0 @@
---- include/List.h.orig Tue Sep 21 15:50:15 2004
-+++ include/List.h Tue Sep 21 17:22:32 2004
-@@ -96,7 +96,7 @@
- inline T*
- ListIterator<T>::operator() () const
- {
-- if ( listp == NULL ) Error(true, "NULL pointer", "ListIterator::operator()");
-+ if ( listp == NULL ) Error(true, (const String&)"NULL pointer", (const String&)"ListIterator::operator()");
-
- return listp->element;
- }
-@@ -105,7 +105,7 @@
- inline const ListIterator<T>&
- ListIterator<T>::operator++ (int)
- {
-- if ( listp == NULL ) Error(true, "NULL pointer", "ListIterator::operator++");
-+ if ( listp == NULL ) Error(true, (const String&)"NULL pointer", (const String&)"ListIterator::operator++");
- listp = listp->next;
- return *this;
- }
-@@ -114,7 +114,7 @@
- inline const ListIterator<T>&
- ListIterator<T>::operator-- (int)
- {
-- if ( listp == NULL ) Error(true, "NULL pointer", "ListIterator::operator--");
-+ if ( listp == NULL ) Error(true, (const String&)"NULL pointer", (const String&)"ListIterator::operator--");
- listp = listp->prev;
- return *this;
- }