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/spdlog.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/spdlog/spdlog.h') diff --git a/include/spdlog/spdlog.h b/include/spdlog/spdlog.h index 9e0af330..925f5021 100644 --- a/include/spdlog/spdlog.h +++ b/include/spdlog/spdlog.h @@ -9,11 +9,11 @@ #pragma once -#include "spdlog/common.h" -#include "spdlog/details/registry.h" -#include "spdlog/logger.h" -#include "spdlog/version.h" -#include "spdlog/details/synchronous_factory.h" +#include +#include +#include +#include +#include #include #include -- cgit v1.2.3