From 7cdd65075cca64ca55d0027d0626336a6a9a3569 Mon Sep 17 00:00:00 2001 From: Cristian Morales Vega Date: Wed, 6 Nov 2019 19:09:30 +0000 Subject: "#include" instead of "spdlog/.*" The meaning of using quotes to #include is implementation defined, so it may or not may be what we want. At least POSIX (https://pubs.opengroup.org/onlinepubs/9699919799/utilities/c99.html) says: "headers whose names are enclosed in double-quotes ( "" ) shall be searched for first in the directory of the file with the #include line", so not what we want since "spdlog" ends up twice in the path. --- include/spdlog/formatter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/spdlog/formatter.h') diff --git a/include/spdlog/formatter.h b/include/spdlog/formatter.h index 9a4ed035..5086fb21 100644 --- a/include/spdlog/formatter.h +++ b/include/spdlog/formatter.h @@ -3,8 +3,8 @@ #pragma once -#include "fmt/fmt.h" -#include "spdlog/details/log_msg.h" +#include +#include namespace spdlog { -- cgit v1.2.3