From a03f9eb1561e738b9111e731d5f183c5b6093d71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kundr=C3=A1t?= Date: Fri, 18 Oct 2019 10:14:44 +0200 Subject: [PATCH] Fix build failure on clang 7 with libc++ Unlike the GNU C++ STL, there's no implicit include for in this one, apparently. --- include/spdlog/sinks/systemd_sink.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/spdlog/sinks/systemd_sink.h b/include/spdlog/sinks/systemd_sink.h index c45a9f66..bad6442d 100644 --- a/include/spdlog/sinks/systemd_sink.h +++ b/include/spdlog/sinks/systemd_sink.h @@ -7,6 +7,7 @@ #include "spdlog/details/null_mutex.h" #include "spdlog/details/synchronous_factory.h" +#include #include namespace spdlog {