Skip to content

Commit

Permalink
test5
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Shchapov <[email protected]>
  • Loading branch information
phprus committed Aug 2, 2024
1 parent f81e6e6 commit 4f77968
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ template <typename T> class buffer {

/// Appends data to the end of the buffer.
template <typename U>
/*FMT_CONSTEXPR20*/ void append(const U* begin, const U* end) {
FMT_CONSTEXPR20 void append(const U* begin, const U* end) {
while (begin != end) {
auto count = to_unsigned(end - begin);
try_reserve(size_ + count);
Expand Down

0 comments on commit 4f77968

Please sign in to comment.