diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-19 20:13:48 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-19 20:13:48 (GMT) |
commit | 89e037ee19ed033fee0830a0c56c7ae956265512 (patch) | |
tree | 7a98427243bde8b3e73210dee288784981b46f9c /Source/cmRegularExpression.h | |
parent | a4bbb55efdbb8d1b948b55248b54a3532f2f9d41 (diff) | |
download | CMake-89e037ee19ed033fee0830a0c56c7ae956265512.zip CMake-89e037ee19ed033fee0830a0c56c7ae956265512.tar.gz CMake-89e037ee19ed033fee0830a0c56c7ae956265512.tar.bz2 |
ENH: first pass at cache, clean up the unix generator, clean up configure.in some
Diffstat (limited to 'Source/cmRegularExpression.h')
-rw-r--r-- | Source/cmRegularExpression.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmRegularExpression.h b/Source/cmRegularExpression.h index 0628e32..011d229 100644 --- a/Source/cmRegularExpression.h +++ b/Source/cmRegularExpression.h @@ -56,7 +56,7 @@ const int NSUBEXP = 10; * regular expression is a sequence of characters used to * search for exact character matches. However, many times the * exact sequence to be found is not known, or only a match at - * the beginning or end of a string is desired. The vbl regu- + * the beginning or end of a string is desired. The cmRegularExpression regu- * lar expression class implements regular expression pattern * matching as is found and implemented in many UNIX commands * and utilities. @@ -68,7 +68,7 @@ const int NSUBEXP = 10; * * Is written as follows in C++ * - * vbl_reg_exp re("([a-z]+)\\.cc"); + * cmRegularExpression re("([a-z]+)\\.cc"); * re.find(filename); * cerr << re.match(1); * |