| Index: src/dateparser.h
|
| diff --git a/src/dateparser.h b/src/dateparser.h
|
| index a9db8685d90466d887544557cefdf1c14b8a32d5..d40e38482a83ffb412ae9719e45da830c646f150 100644
|
| --- a/src/dateparser.h
|
| +++ b/src/dateparser.h
|
| @@ -99,24 +99,8 @@ class DateParser : public AllStatic {
|
| return false;
|
| }
|
|
|
| - bool SkipWhiteSpace() {
|
| - if (unicode_cache_->IsWhiteSpaceOrLineTerminator(ch_)) {
|
| - Next();
|
| - return true;
|
| - }
|
| - return false;
|
| - }
|
| -
|
| - bool SkipParentheses() {
|
| - if (ch_ != '(') return false;
|
| - int balance = 0;
|
| - do {
|
| - if (ch_ == ')') --balance;
|
| - else if (ch_ == '(') ++balance;
|
| - Next();
|
| - } while (balance > 0 && ch_);
|
| - return true;
|
| - }
|
| + inline bool SkipWhiteSpace();
|
| + inline bool SkipParentheses();
|
|
|
| // Character testing/classification. Non-ASCII digits are not supported.
|
| bool Is(uint32_t c) const { return ch_ == c; }
|
|
|