Skip to content

Commit

Permalink
Automated fixes by clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 22, 2024
1 parent 8ffa507 commit 6ead7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-suite/calendars.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3379,7 +3379,7 @@ BOOST_AUTO_TEST_CASE(testNewZealand) {
auto auckland = NewZealand(NewZealand::Auckland);
auto wellington = NewZealand(NewZealand::Wellington);

for (auto calendar: { auckland, wellington }) {
for (const auto& calendar: { auckland, wellington }) {
// mid-week New Year's day
BOOST_TEST(calendar.isHoliday({1, January, 2025}));
BOOST_TEST(calendar.isHoliday({2, January, 2025}));
Expand Down

0 comments on commit 6ead7d1

Please sign in to comment.