minor fixes

This commit is contained in:
daylanKifky 2017-11-11 14:06:01 +01:00
parent 27e7412640
commit 5153b44507
2 changed files with 4 additions and 4 deletions

View File

@ -18,9 +18,9 @@
#ifndef FMT_USE_WINDOWS_H
#define FMT_USE_WINDOWS_H 0
#endif
#include "../../fmt/format.h"
#include "bundled/format.h"
#if defined(SPDLOG_FMT_PRINTF)
#include "../../fmt/printf.h"
#include "bundled/fmt/printf.h"
#endif
#else //external fmtlib

View File

@ -8,8 +8,8 @@
// include external or bundled copy of fmtlib's ostream support
//
#if !defined(SPDLOG_FMT_EXTERNAL)
#include "fmt/fmt.h"
#include "fmt/bundled/ostream.h"
#include "fmt.h"
#include "bundled/ostream.h"
#else
#include <fmt/ostream.h>
#endif