aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Zverovich <victor.zverovich@gmail.com>2019-12-01 10:19:07 -0800
committerVictor Zverovich <victor.zverovich@gmail.com>2019-12-01 10:19:07 -0800
commit4b120b68ae2099440c9801afa4b98e9df2cd02ec (patch)
treebdf98ee26c91a983736459f3e685d59ac0a9ef7c
parent186b225d9d2107c6493b84bf362e161aa20cce71 (diff)
downloadfmtlib-4b120b68ae2099440c9801afa4b98e9df2cd02ec.tar.gz
Clean up includes
-rw-r--r--include/fmt/format.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/fmt/format.h b/include/fmt/format.h
index 3e2fc5a8..398c2a77 100644
--- a/include/fmt/format.h
+++ b/include/fmt/format.h
@@ -33,18 +33,16 @@
#ifndef FMT_FORMAT_H_
#define FMT_FORMAT_H_
+#include "core.h"
+
#include <algorithm>
#include <cerrno>
#include <cmath>
#include <cstdint>
-#include <cstring>
-#include <iterator>
#include <limits>
#include <memory>
#include <stdexcept>
-#include "core.h"
-
#ifdef __clang__
# define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)
#else