From 5153b445076f69533d3bd14759d7d72c16f316d9 Mon Sep 17 00:00:00 2001 From: daylanKifky Date: Sat, 11 Nov 2017 14:06:01 +0100 Subject: [PATCH] minor fixes --- include/spdlog/fmt/fmt.h | 4 ++-- include/spdlog/fmt/ostr.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/spdlog/fmt/fmt.h b/include/spdlog/fmt/fmt.h index 1cd1a383..c97ae673 100644 --- a/include/spdlog/fmt/fmt.h +++ b/include/spdlog/fmt/fmt.h @@ -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 diff --git a/include/spdlog/fmt/ostr.h b/include/spdlog/fmt/ostr.h index 75084df3..5cdd5cd0 100644 --- a/include/spdlog/fmt/ostr.h +++ b/include/spdlog/fmt/ostr.h @@ -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 #endif