spdlog/include/spdlog/fmt/ostr.h
Tennn f8d509d010 Fixed issues 449
Please check it
2017-05-21 17:44:44 +08:00

18 lines
338 B
C

//
// Copyright(c) 2016 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
#pragma once
// include external or bundled copy of fmtlib's ostream support
//
#if !defined(SPDLOG_FMT_EXTERNAL)
#include "spdlog/fmt/fmt.h"
#include "spdlog/fmt/bundled/ostream.h"
#else
#include <fmt/ostream.h>
#endif