mirror of
https://github.com/gabime/spdlog.git
synced 2025-02-05 12:16:46 +08:00
f8d509d010
Please check it
18 lines
338 B
C
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
|
|
|
|
|