summaryrefslogtreecommitdiff
path: root/games/pipenightdreams/files/patch-list.cpp
blob: fb1bd76bc7c239dfac2a11d0af10607f1e9f2715 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- src/list.cpp.orig	Sat Jan  1 14:45:36 2005
+++ src/list.cpp	Sat Jan  1 14:47:10 2005
@@ -125,7 +125,7 @@
   return (insert(indexOf(i), obj));
 }
 
-List::Result List::remove(Index * index, bool del=false){
+List::Result List::remove(Index * index, bool del){
   if (isEmpty()) return EmptyList;
   if (!index) return NullIndex;
 
@@ -155,7 +155,7 @@
   return Removed;
 }
 
-void List::empty(bool del=true){
+void List::empty(bool del){
   while (!isEmpty())
     remove(getFirst(), del);
 }