File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -148,8 +148,7 @@ constexpr auto test_translation_cases = std::array{
148
148
test_translation_case{
149
149
translations::english_translation<translations::kind::full>::print,
150
150
" 0\n 0\n " sv, " 0\n " sv,
151
- " WRONG: line 2: expected \" 0\" , got end of file\n " sv}
152
- };
151
+ " WRONG: line 2: expected \" 0\" , got end of file\n " sv}};
153
152
154
153
#undef REP100
155
154
#undef REP10
Original file line number Diff line number Diff line change @@ -135,10 +135,8 @@ template <> struct represent_word<true>
135
135
136
136
assert (used_chars <= abbreviated_max);
137
137
138
- auto append_char_helper = [&](char ch) constexpr
139
- {
140
- out = append_char (std::move (out), ch);
141
- };
138
+ auto append_char_helper
139
+ = [&] (char ch) constexpr { out = append_char (std::move (out), ch); };
142
140
143
141
*out++ = ' "' ;
144
142
You can’t perform that action at this time.
0 commit comments