summaryrefslogtreecommitdiff
path: root/src/regex_impl.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2018-07-26 21:56:34 +1000
committerMaxime Coste <mawww@kakoune.org>2018-07-26 21:56:34 +1000
commit7cf3cbde8ea078ad1620eafcf919386ea03b10d5 (patch)
treefd5d25df49efa7aa640fac0fb198cadbb8c8ca7d /src/regex_impl.hh
parent737807dde28e55a7665eac43b7176cd2cc899d67 (diff)
Cleanup some trailing whitespaces and double semicolon
Diffstat (limited to 'src/regex_impl.hh')
-rw-r--r--src/regex_impl.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex_impl.hh b/src/regex_impl.hh
index 73f1e016..9e87f2c1 100644
--- a/src/regex_impl.hh
+++ b/src/regex_impl.hh
@@ -368,7 +368,7 @@ private:
if (pos == config.end)
return StepResult::Failed;
return is_ctype((CharacterType)inst.param, *pos) ?
- StepResult::Consumed : StepResult::Failed;;
+ StepResult::Consumed : StepResult::Failed;
case CompiledRegex::LineStart:
if (not is_line_start(pos, config))
return StepResult::Failed;