mirror of
https://github.com/gabime/spdlog.git
synced 2026-04-10 11:34:29 +08:00
15 lines
299 B
C
15 lines
299 B
C
//
|
|
// Copyright(c) 2016 Gabi Melman.
|
|
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
|
|
//
|
|
|
|
#pragma once
|
|
//
|
|
// include bundled or external copy of fmtlib's ostream support
|
|
//
|
|
#include <spdlog/tweakme.h>
|
|
|
|
#if !defined(SPDLOG_USE_STD_FORMAT)
|
|
#include <fmt/ostream.h>
|
|
#endif
|