aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/torque/earley-parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/torque/earley-parser.h')
-rw-r--r--deps/v8/src/torque/earley-parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/torque/earley-parser.h b/deps/v8/src/torque/earley-parser.h
index 1e77734ab6..8efe0c704d 100644
--- a/deps/v8/src/torque/earley-parser.h
+++ b/deps/v8/src/torque/earley-parser.h
@@ -121,7 +121,7 @@ class ParseResultIterator {
size_t i_ = 0;
MatchedInput matched_input_;
- DISALLOW_COPY_AND_MOVE_AND_ASSIGN(ParseResultIterator);
+ DISALLOW_COPY_AND_ASSIGN(ParseResultIterator);
};
struct LexerResult {
@@ -196,7 +196,7 @@ class Symbol {
std::vector<std::unique_ptr<Rule>> rules_;
// Disallow copying and moving to ensure Symbol has a stable address.
- DISALLOW_COPY_AND_MOVE_AND_ASSIGN(Symbol);
+ DISALLOW_COPY_AND_ASSIGN(Symbol);
};
// Items are the core datastructure of Earley's algorithm.