diff options
Diffstat (limited to 'JavaScriptCore/pcre/pcre.h')
-rw-r--r-- | JavaScriptCore/pcre/pcre.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/JavaScriptCore/pcre/pcre.h b/JavaScriptCore/pcre/pcre.h index 1be4523..55044fd 100644 --- a/JavaScriptCore/pcre/pcre.h +++ b/JavaScriptCore/pcre/pcre.h @@ -55,12 +55,12 @@ const int JSRegExpErrorHitLimit = -2; const int JSRegExpErrorNoMemory = -3; const int JSRegExpErrorInternal = -4; -JSRegExp* jsRegExpCompile(const ::UChar* pattern, int patternLength, +JSRegExp* jsRegExpCompile(const UChar* pattern, int patternLength, JSRegExpIgnoreCaseOption, JSRegExpMultilineOption, unsigned* numSubpatterns, const char** errorMessage); int jsRegExpExecute(const JSRegExp*, - const ::UChar* subject, int subjectLength, int startOffset, + const UChar* subject, int subjectLength, int startOffset, int* offsetsVector, int offsetsVectorLength); void jsRegExpFree(JSRegExp*); |