From d3997cc4d12b22ce7d1aba3c31da2610c5f1a9c5 Mon Sep 17 00:00:00 2001 From: gabime Date: Sun, 22 Mar 2020 00:50:22 +0200 Subject: [PATCH] Fix #1481 --- include/spdlog/fwd.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/spdlog/fwd.h diff --git a/include/spdlog/fwd.h b/include/spdlog/fwd.h new file mode 100644 index 00000000..13ef868d --- /dev/null +++ b/include/spdlog/fwd.h @@ -0,0 +1,14 @@ +// Copyright(c) 2015-present, Gabi Melman & spdlog contributors. +// Distributed under the MIT License (http://opensource.org/licenses/MIT) + +#pragma once + +namespace spdlog { +class logger; +class pattern_formatter; + +namespace sinks { +class sink; +} + +} // namespace spdlog