diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-25 20:20:00 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-25 20:20:00 +0200 |
commit | dbe72fd9627f701210d69c9b01db762b2c950190 (patch) | |
tree | d2baf354b59d38f3ad486a73523fc43e8c3c6c3b /Userland/Libraries/LibRegex | |
parent | 2d6be48c6f2353a5956341e9b947c715f29a6eaf (diff) | |
download | serenity-dbe72fd9627f701210d69c9b01db762b2c950190.zip |
Everywhere: Remove empty line after function body opening curly brace
Diffstat (limited to 'Userland/Libraries/LibRegex')
-rw-r--r-- | Userland/Libraries/LibRegex/RegexByteCode.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibRegex/RegexByteCode.cpp b/Userland/Libraries/LibRegex/RegexByteCode.cpp index 5e7051074f..a85b6e87db 100644 --- a/Userland/Libraries/LibRegex/RegexByteCode.cpp +++ b/Userland/Libraries/LibRegex/RegexByteCode.cpp @@ -210,7 +210,6 @@ ALWAYS_INLINE ExecutionResult OpCode_FailForks::execute(const MatchInput& input, ALWAYS_INLINE ExecutionResult OpCode_Jump::execute(const MatchInput&, MatchState& state, MatchOutput&) const { - state.instruction_position += offset(); return ExecutionResult::Continue; } |