summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/RegularExpression.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-06-30 14:30:38 (GMT)
committerBrad King <brad.king@kitware.com>2003-06-30 14:30:38 (GMT)
commitef76ed76f8a31f706ee675160e5c57c34b608516 (patch)
treeb0bad156b6f2fb3b4bfdb57a13a55a0b2d45f0bb /Source/kwsys/RegularExpression.cxx
parentac2de4f5defce85b7980d70656668d8aebc62079 (diff)
downloadCMake-ef76ed76f8a31f706ee675160e5c57c34b608516.zip
CMake-ef76ed76f8a31f706ee675160e5c57c34b608516.tar.gz
CMake-ef76ed76f8a31f706ee675160e5c57c34b608516.tar.bz2
ENH: Added DLL support.
Diffstat (limited to 'Source/kwsys/RegularExpression.cxx')
-rw-r--r--Source/kwsys/RegularExpression.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/RegularExpression.cxx b/Source/kwsys/RegularExpression.cxx
index f9a3291..ef204a1 100644
--- a/Source/kwsys/RegularExpression.cxx
+++ b/Source/kwsys/RegularExpression.cxx
@@ -413,7 +413,7 @@ static char* reg (int paren, int *flagp) {
// Make an OPEN node, if parenthesized.
if (paren) {
- if (regnpar >= RegularExpressionNSUBEXP) {
+ if (regnpar >= RegularExpression::NSUBEXP) {
//RAISE Error, SYM(RegularExpression), SYM(Too_Many_Parens),
printf ("RegularExpression::compile(): Too many parentheses.\n");
return 0;
@@ -925,7 +925,7 @@ static int regtry (const char* string, const char* *start,
sp1 = start;
ep = end;
- for (i = RegularExpressionNSUBEXP; i > 0; i--) {
+ for (i = RegularExpression::NSUBEXP; i > 0; i--) {
*sp1++ = 0;
*ep++ = 0;
}