From f8ffbca34120f973f9b4876a90e91fc33fe90e86 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse Date: Tue, 1 Jan 2019 10:52:10 +0100 Subject: [PATCH] Use quotes to include local headers In general angular brackets are used for external headers, while quotes are used for internal ones. Is there any particular reason not to follow the conventions? While this is admittedly left to the compiler implementor by the standard, some implementations, like gcc, do have a peculiar behavior for the two kind of `include` and the current solution might end up including something unwanted, especially given the quite "common" name (Logger) used. --- logger/Logger.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logger/Logger.cxx b/logger/Logger.cxx index d584dcd..351f807 100644 --- a/logger/Logger.cxx +++ b/logger/Logger.cxx @@ -5,7 +5,7 @@ * GNU Lesser General Public Licence (LGPL) version 3, * * copied verbatim in the file "LICENSE" * ********************************************************************************/ -#include +#include "Logger.h" #include #include