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.
This commit is contained in:
Giulio Eulisse 2019-01-01 10:52:10 +01:00 committed by Alexey Rybalchenko
parent 9a8acdf6eb
commit 7d0411b939

View File

@ -5,7 +5,7 @@
* GNU Lesser General Public Licence (LGPL) version 3, * * GNU Lesser General Public Licence (LGPL) version 3, *
* copied verbatim in the file "LICENSE" * * copied verbatim in the file "LICENSE" *
********************************************************************************/ ********************************************************************************/
#include <Logger.h> #include "Logger.h"
#include <iostream> #include <iostream>
#include <ostream> #include <ostream>