summaryrefslogtreecommitdiff
path: root/utils/testregexp.cc
diff options
context:
space:
mode:
authorsc2000-11-28 14:19:35 +0000
committersc2000-11-28 14:19:35 +0000
commit325530e630c68c7c10a2f4339f5b43434fcd0329 (patch)
tree8e655f6002598176ed0e9e5e0ba3bcb0971c434d /utils/testregexp.cc
parentb8af7905fd61ce5cb2c94da78ccc9e051f9ceddc (diff)
downloadivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.zip
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.gz
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.bz2
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.xz
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
Diffstat (limited to 'utils/testregexp.cc')
-rw-r--r--utils/testregexp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/testregexp.cc b/utils/testregexp.cc
index 5949ec8..fc8ed34 100644
--- a/utils/testregexp.cc
+++ b/utils/testregexp.cc
@@ -9,7 +9,7 @@ main (int argc, char** argv)
char* s1 = "tota toto";
if (argc > 1)
s1 = argv[1];
- CcuRegExp re = s;
+ IvlRegExp re = s;
if (re.Compile ()) {
if (re.Match (s1))
printf ("%s\n",s1);