spdlog/include/spdlog/fmt/ostr.h

19 lines
371 B
C
Raw Normal View History

2016-07-22 11:06:36 -04:00
//
// Copyright(c) 2016 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
#pragma once
2018-03-16 11:20:56 -04:00
//
// include bundled or external copy of fmtlib's ostream support
2016-07-22 13:19:26 -04:00
//
#if !defined(SPDLOG_FMT_EXTERNAL)
2018-03-16 11:20:56 -04:00
#ifndef FMT_HEADER_ONLY
#define FMT_HEADER_ONLY
#endif
2017-11-11 08:06:01 -05:00
#include "bundled/ostream.h"
2018-03-09 08:26:33 -05:00
#include "fmt.h"
2016-07-22 11:06:36 -04:00
#else
#include <fmt/ostream.h>
#endif