Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin M. Godby <kevin@godby.org>2016-02-25 06:26:18 +0300
committerKevin M. Godby <kevin@godby.org>2016-02-25 06:26:18 +0300
commit196689f720c2fc7968d4c3b940952f3f9ac589c8 (patch)
tree6615b0030f0990fde6795eb7c7a9dc9014d29dea /include/spdlog/formatter.h
parent24a1b23e3dc8c1ee2277e70073310230db3ddf9e (diff)
Fixed header include problems.
Diffstat (limited to 'include/spdlog/formatter.h')
-rw-r--r--include/spdlog/formatter.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/spdlog/formatter.h b/include/spdlog/formatter.h
index cf0af012..5a5bad2d 100644
--- a/include/spdlog/formatter.h
+++ b/include/spdlog/formatter.h
@@ -5,7 +5,10 @@
#pragma once
-#include "details/log_msg.h"
+#include <spdlog/details/log_msg.h>
+
+#include <vector>
+
namespace spdlog
{
namespace details
@@ -36,5 +39,5 @@ private:
};
}
-#include "details/pattern_formatter_impl.h"
+#include <spdlog/details/pattern_formatter_impl.h>