summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cxxformat/core.hpp10
-rw-r--r--cxxformat/formatters.hpp6
-rw-r--r--cxxformat/helpers.hpp1
3 files changed, 7 insertions, 10 deletions
diff --git a/cxxformat/core.hpp b/cxxformat/core.hpp
index 3b665a5..92ab3c1 100644
--- a/cxxformat/core.hpp
+++ b/cxxformat/core.hpp
@@ -1,17 +1,7 @@
#pragma once
-#include <algorithm>
-#include <array>
-#include <bit>
-#include <cassert>
-#include <charconv>
-#include <cmath>
-#include <cstddef>
-#include <limits>
#include <optional>
#include <stdexcept>
-#include <sstream>
-#include <string>
#include <string_view>
#include "helpers.hpp"
diff --git a/cxxformat/formatters.hpp b/cxxformat/formatters.hpp
index dce3420..94a0ae6 100644
--- a/cxxformat/formatters.hpp
+++ b/cxxformat/formatters.hpp
@@ -2,7 +2,13 @@
#include "core.hpp"
+#include <array>
+#include <bit>
+#include <cmath>
+#include <cassert>
+#include <charconv>
#include <concepts>
+#include <limits>
namespace format {
namespace {
diff --git a/cxxformat/helpers.hpp b/cxxformat/helpers.hpp
index c4bad42..73cb0be 100644
--- a/cxxformat/helpers.hpp
+++ b/cxxformat/helpers.hpp
@@ -2,6 +2,7 @@
#include <cassert>
#include <concepts>
+#include <limits>
#include <memory>
#include <optional>
#include <type_traits>