mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
Remove unnecessary false
This commit is contained in:
parent
e02ac78195
commit
5e97f459d8
@ -1615,7 +1615,7 @@ namespace chaiscript
|
||||
while (has_matches) {
|
||||
while (Eol()) {}
|
||||
has_matches = false;
|
||||
if (Keyword("catch", false)) {
|
||||
if (Keyword("catch")) {
|
||||
const auto catch_stack_top = m_match_stack.size();
|
||||
if (Char('(')) {
|
||||
if (!(Arg() && Char(')'))) {
|
||||
@ -1638,7 +1638,7 @@ namespace chaiscript
|
||||
}
|
||||
}
|
||||
while (Eol()) {}
|
||||
if (Keyword("finally", false)) {
|
||||
if (Keyword("finally")) {
|
||||
const auto finally_stack_top = m_match_stack.size();
|
||||
|
||||
while (Eol()) {}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user