Skip to content

Commit

Permalink
fix gcc 8.3 compile errors (#4336)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiud authored Feb 3, 2025
1 parent 5676e40 commit d5b866e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/fmt/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -2263,8 +2263,8 @@ template <> struct is_output_iterator<appender, char> : std::true_type {};
template <typename It, typename T>
struct is_output_iterator<
It, T,
void_t<decltype(*std::declval<decay_t<It>&>()++ = std::declval<T>())>>
: std::true_type {};
enable_if_t<std::is_assignable<decltype(*std::declval<decay_t<It>&>()++),
T>::value>> : std::true_type {};

#ifndef FMT_USE_LOCALE
# define FMT_USE_LOCALE (FMT_OPTIMIZE_SIZE <= 1)
Expand Down

0 comments on commit d5b866e

Please sign in to comment.