summaryrefslogtreecommitdiff
path: root/pcrecpp.h
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-08-01 09:10:40 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2007-08-01 09:10:40 +0000
commit01eeb658525bc9a5b840253f8b415af6abe282e0 (patch)
treeb69d63abc2337c71dffc18988d2969cecbe24271 /pcrecpp.h
parente188596ef3e912f62e3ae85c8da905a54fc41d8b (diff)
downloadpcre-01eeb658525bc9a5b840253f8b415af6abe282e0.tar.gz
Correct errors in previous patch; tidy for test release.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@200 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcrecpp.h')
-rw-r--r--pcrecpp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pcrecpp.h b/pcrecpp.h
index cb30552..c3c536c 100644
--- a/pcrecpp.h
+++ b/pcrecpp.h
@@ -355,7 +355,7 @@ PCRECPP_EXP_DECL Arg no_arg;
// along with other options we put on top of pcre.
// Only 9 modifiers, plus match_limit and match_limit_recursion,
// are supported now.
-class PCRECPP_EXP_DECL RE_Options {
+class PCRECPP_EXP_DEFN RE_Options {
public:
// constructor
RE_Options() : match_limit_(0), match_limit_recursion_(0), all_options_(0) {}
@@ -487,7 +487,7 @@ static inline RE_Options EXTENDED() {
// Interface for regular expression matching. Also corresponds to a
// pre-compiled regular expression. An "RE" object is safe for
// concurrent use by multiple threads.
-class PCRECPP_EXP_DECL RE {
+class PCRECPP_EXP_DEFN RE {
public:
// We provide implicit conversions from strings so that users can
// pass in a string or a "const char*" wherever an "RE" is expected.