File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1360,8 +1360,6 @@ class tm_writer {
13601360
13611361 OutputIt out () const { return out_; }
13621362
1363- const std::locale& locale () const { return loc_; }
1364-
13651363 FMT_CONSTEXPR void on_text (const Char* begin, const Char* end) {
13661364 out_ = copy_str<Char>(begin, end, out_);
13671365 }
@@ -1640,7 +1638,8 @@ struct chrono_format_checker : null_chrono_spec_handler<chrono_format_checker> {
16401638 FMT_CONSTEXPR void on_duration_unit () {}
16411639};
16421640
1643- template <typename T, FMT_ENABLE_IF(std::is_integral<T>::value && has_isfinite<T>::value)>
1641+ template <typename T,
1642+ FMT_ENABLE_IF (std::is_integral<T>::value&& has_isfinite<T>::value)>
16441643inline bool isfinite(T) {
16451644 return true ;
16461645}
You can’t perform that action at this time.
0 commit comments