Skip to content

Commit

Permalink
Small refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvov1 committed Nov 13, 2024
1 parent cd673ae commit c219d9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Aeu.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class Aeu final {
for(; position < size && !std::iswalnum(data[position]); ++position) ;
}

const auto base = [&data, &size, &position] {
const auto base = [&data, &size, &position, &characters] {
if (data[position] == characters[0] && size > position + 1) {
switch (data[position + 1]) {
case characters[8]:
Expand Down

0 comments on commit c219d9c

Please sign in to comment.