Skip to content

Commit 2f31f44

Browse files
committed
Re-remove trailing whitespace
Signed-off-by: Lennart Austenfeld <[email protected]>
1 parent cb12d57 commit 2f31f44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vendor/minja/minja.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ class SubscriptExpr : public Expression {
12461246
}
12471247
return result;
12481248

1249-
} else if (target_value.is_array()) {
1249+
} else if (target_value.is_array()) {
12501250
auto result = Value::array();
12511251
for (int64_t i = start; step > 0 ? i < end : i > end; i += step) {
12521252
result.push_back(target_value.at(i));
@@ -2145,7 +2145,7 @@ class Parser {
21452145
}
21462146
}
21472147
}
2148-
2148+
21492149
if ((has_first_colon || has_second_colon)) {
21502150
index = std::make_shared<SliceExpr>(slice_loc, std::move(start), std::move(end), std::move(step));
21512151
} else {

0 commit comments

Comments
 (0)