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/testlist.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'utils/testlist.cc') diff --git a/utils/testlist.cc b/utils/testlist.cc index 076d88e..934c28f 100644 --- a/utils/testlist.cc +++ b/utils/testlist.cc @@ -5,9 +5,9 @@ main () { #ifdef CPLUS_BUG19 - CcuList l; + IvlList l; #else - CcuListOf l; + IvlListOf l; #endif char c; char s[80]; @@ -34,9 +34,9 @@ main () int i; scanf (" %d %s", &i, s); #ifdef CPLUS_BUG19 - CcuListIter lj (l); + IvlListIter lj (l); #else - CcuListIterOf lj (l); + IvlListIterOf lj (l); #endif while ((i-- > 0) && ++lj) ; @@ -48,9 +48,9 @@ main () int i; scanf (" %d %s", &i, s); #ifdef CPLUS_BUG19 - CcuListIter lj (l); + IvlListIter lj (l); #else - CcuListIterOf lj (l); + IvlListIterOf lj (l); #endif while ((i-- > 0) && ++lj) ; @@ -59,13 +59,13 @@ main () } } #ifdef CPLUS_BUG19 - CcuListIter li (l); + IvlListIter li (l); while (++li) { char* pt = (char*) *li; printf ("%s ", pt); } #else - CcuListIterOf li (l); + IvlListIterOf li (l); while (++li) { char* pt = *li; printf ("%s ", pt); -- cgit v1.1