summaryrefslogtreecommitdiff
path: root/pcrecpp.cc
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2008-01-21 14:57:19 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2008-01-21 14:57:19 +0000
commit4ff532b445e64eb6453bccb24a8e23a6831488ea (patch)
treed90370614d145b71f207f30bf5873c8fb1772d4e /pcrecpp.cc
parent1d4f53aa517fc898d563c40cd36243653547177c (diff)
downloadpcre-4ff532b445e64eb6453bccb24a8e23a6831488ea.tar.gz
Apply Craig's patch to move no_arg into the RE class.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@308 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcrecpp.cc')
-rw-r--r--pcrecpp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcrecpp.cc b/pcrecpp.cc
index a318d19..0e21718 100644
--- a/pcrecpp.cc
+++ b/pcrecpp.cc
@@ -55,7 +55,7 @@ static const int kMaxArgs = 16;
static const int kVecSize = (1 + kMaxArgs) * 3; // results + PCRE workspace
// Special object that stands-in for no argument
-PCRECPP_EXP_DEFN Arg no_arg((void*)NULL);
+Arg RE::no_arg((void*)NULL);
// If a regular expression has no error, its error_ field points here
static const string empty_string;