From 4f36d1933ae5316edd4f5282758ce061759ab709 Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 29 Sep 2023 00:31:45 +0300 Subject: [PATCH] Added missing include --- bench/async_bench.cpp | 8 ++++---- include/spdlog/details/tcp_client.h | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bench/async_bench.cpp b/bench/async_bench.cpp index 5ef153fe..664bb08c 100644 --- a/bench/async_bench.cpp +++ b/bench/async_bench.cpp @@ -6,16 +6,16 @@ // // bench.cpp : spdlog benchmarks // -#include "spdlog/async.h" -#include "spdlog/sinks/basic_file_sink.h" -#include "spdlog/spdlog.h" - #include #include #include #include #include +#include "spdlog/async.h" +#include "spdlog/sinks/basic_file_sink.h" +#include "spdlog/spdlog.h" + using namespace std; using namespace std::chrono; using namespace spdlog; diff --git a/include/spdlog/details/tcp_client.h b/include/spdlog/details/tcp_client.h index 80f9b598..283da418 100644 --- a/include/spdlog/details/tcp_client.h +++ b/include/spdlog/details/tcp_client.h @@ -12,6 +12,7 @@ #include #include #include +#include #include #include