Fix potential issue #660

This commit is contained in:
gabime 2018-03-16 17:20:56 +02:00
parent fe5aaf4932
commit ea95ea8295
1 changed files with 5 additions and 2 deletions

View File

@ -4,10 +4,13 @@
// //
#pragma once #pragma once
//
// include external or bundled copy of fmtlib's ostream support // include bundled or external copy of fmtlib's ostream support
// //
#if !defined(SPDLOG_FMT_EXTERNAL) #if !defined(SPDLOG_FMT_EXTERNAL)
#ifndef FMT_HEADER_ONLY
#define FMT_HEADER_ONLY
#endif
#include "bundled/ostream.h" #include "bundled/ostream.h"
#include "fmt.h" #include "fmt.h"
#else #else