We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be2edf commit 1bab12aCopy full SHA for 1bab12a
fly/types/string/formatters.hpp
@@ -5,19 +5,25 @@
5
#include "fly/types/string/concepts.hpp"
6
#include "fly/types/string/detail/classifier.hpp"
7
#include "fly/types/string/detail/format_specifier.hpp"
8
-#include "fly/types/string/detail/stream_util.hpp"
9
#include "fly/types/string/detail/unicode.hpp"
10
+#if !defined(FLY_COMPILER_SUPPORTS_FP_CHARCONV)
11
+# include "fly/types/string/detail/stream_util.hpp"
12
+#endif
13
+
14
#include <array>
15
#include <charconv>
16
#include <cmath>
-#include <iomanip>
17
#include <limits>
-#include <sstream>
18
#include <string>
19
#include <system_error>
20
#include <type_traits>
21
22
23
+# include <iomanip>
24
+# include <sstream>
25
26
27
namespace fly {
28
29
/**
0 commit comments