Skip to content

Commit

Permalink
Attempted gcc 4.8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brevzin committed Jul 10, 2022
1 parent 427496d commit 78dbb0f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/fmt/ranges.h
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,8 @@ struct formatter<TupleT, Char,
};

public:
formatter() = default;

FMT_CONSTEXPR void set_separator(basic_string_view<Char> sep) {
separator_ = sep;
}
Expand Down Expand Up @@ -451,6 +453,8 @@ struct range_formatter<
}

public:
range_formatter() = default;

FMT_CONSTEXPR auto underlying() -> detail::range_formatter_type<Char, T>& {
return underlying_;
}
Expand Down

0 comments on commit 78dbb0f

Please sign in to comment.