| Index: src/regexp/regexp-ast.h
|
| diff --git a/src/regexp/regexp-ast.h b/src/regexp/regexp-ast.h
|
| index 4a81ccaf1b4444042e653a3f1a3e7f4fa071638f..0e718d3b4d15ecda1e6d56b3bc326ae5539a80e3 100644
|
| --- a/src/regexp/regexp-ast.h
|
| +++ b/src/regexp/regexp-ast.h
|
| @@ -78,7 +78,6 @@ class CharacterRange {
|
| CharacterRange() : from_(0), to_(0) {}
|
| // For compatibility with the CHECK_OK macro
|
| CharacterRange(void* null) { DCHECK_NULL(null); } // NOLINT
|
| - CharacterRange(uc32 from, uc32 to) : from_(from), to_(to) {}
|
| static void AddClassEscape(uc16 type, ZoneList<CharacterRange>* ranges,
|
| Zone* zone);
|
| static Vector<const int> GetWordBounds();
|
| @@ -126,6 +125,8 @@ class CharacterRange {
|
| static const int kPayloadMask = (1 << 24) - 1;
|
|
|
| private:
|
| + CharacterRange(uc32 from, uc32 to) : from_(from), to_(to) {}
|
| +
|
| uc32 from_;
|
| uc32 to_;
|
| };
|
|
|