Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCristian Morales Vega <christian.morales.vega@gmail.com>2019-11-06 22:09:30 +0300
committerCristian Morales Vega <christian.morales.vega@gmail.com>2019-11-06 22:15:29 +0300
commit7cdd65075cca64ca55d0027d0626336a6a9a3569 (patch)
treecb7582ae360ef014cdad4a7e0310f4a63503b352 /include/spdlog/spdlog.h
parent436ce16e79b302a759a5687377aafb668f6d4101 (diff)
"#include" <spdlog/.*> 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.
Diffstat (limited to 'include/spdlog/spdlog.h')
-rw-r--r--include/spdlog/spdlog.h10
1 files changed, 5 insertions, 5 deletions
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 <spdlog/common.h>
+#include <spdlog/details/registry.h>
+#include <spdlog/logger.h>
+#include <spdlog/version.h>
+#include <spdlog/details/synchronous_factory.h>
#include <chrono>
#include <functional>