From 325530e630c68c7c10a2f4339f5b43434fcd0329 Mon Sep 17 00:00:00 2001 From: sc Date: Tue, 28 Nov 2000 14:19:35 +0000 Subject: Incorporation into IvyLeague Ccu -> Ivl ccu -> ivl Smart pointers disappear (too dangerous) Imakefile disappears (Makefile now) An empty cplus_bugs.h has been created locally --- utils/testdlist.cc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'utils/testdlist.cc') diff --git a/utils/testdlist.cc b/utils/testdlist.cc index 9656883..0447ae6 100644 --- a/utils/testdlist.cc +++ b/utils/testdlist.cc @@ -5,9 +5,9 @@ main () { #ifdef CPLUS_BUG19 - CcuDList l; + IvlDList l; #else - CcuDListOf l; + IvlDListOf l; #endif char c; char s[80]; @@ -31,7 +31,7 @@ main () continue; case 'r': { - CcuDListIterOf li (l); + IvlDListIterOf li (l); li.GotoEnd (); while (--li) { char* pt = *li; @@ -44,7 +44,7 @@ main () { int i; scanf (" %d %s", &i, s); - CcuDListIterOf lj (l); + IvlDListIterOf lj (l); while ((i-- > 0) && ++lj) ; l.InsertBefore (lj, NewString (s)); @@ -54,7 +54,7 @@ main () { int i; scanf (" %d %s", &i, s); - CcuDListIterOf lj (l); + IvlDListIterOf lj (l); while ((i-- > 0) && ++lj) ; l.InsertAfter (lj, NewString (s)); @@ -62,11 +62,11 @@ main () } } #ifdef CPLUS_BUG19 - CcuDListIter li (l); + IvlDListIter li (l); while (++li) printf ("%s ", (char*) *li); #else - CcuDListIterOf li (l); + IvlDListIterOf li (l); while (++li) { char* pt = *li; printf ("%s ", pt); -- cgit v1.1