c++: style: use consistently this/that instead of this/other

* data/lalr1.cc, data/variant.hh: here.
This commit is contained in:
Akim Demaille
2018-12-24 19:05:00 +01:00
parent 10591c8879
commit 0a4ddce822
2 changed files with 20 additions and 20 deletions

View File

@@ -301,7 +301,7 @@ m4_define([b4_shared_declarations],
by_state (kind_type s) YY_NOEXCEPT;
/// Copy constructor.
by_state (const by_state& other) YY_NOEXCEPT;
by_state (const by_state& that) YY_NOEXCEPT;
/// Record that this symbol is empty.
void clear () YY_NOEXCEPT;
@@ -570,8 +570,8 @@ m4_if(b4_prefix, [yy], [],
: state (empty_state)
{}
]b4_parser_class_name[::by_state::by_state (const by_state& other) YY_NOEXCEPT
: state (other.state)
]b4_parser_class_name[::by_state::by_state (const by_state& that) YY_NOEXCEPT
: state (that.state)
{}
void