mirror of
https://github.com/gabime/spdlog.git
synced 2026-01-02 09:57:55 +08:00
16 lines
314 B
C
16 lines
314 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 "bundled/ostream.h"
|
|
#include "fmt.h"
|
|
#else
|
|
#include <fmt/ostream.h>
|
|
#endif
|