However, when the header is included from project/src/another_feature/file.cpp when using "..." the pre-processor first would check the current folder then the included path, so in a way it is more natural to use <...> and it should be (negligibly?) faster.
https://en.cppreference.com/w/cpp/preprocessor/include
According to Google's guidelines headers that are part of the project with a folder structure `project/src/feature/necessary.h' should be included as
https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes The idea is to highlight with
"..."
the fact that the header is part of the projectHowever, when the header is included from
project/src/another_feature/file.cpp
when using"..."
the pre-processor first would check the current folder then the included path, so in a way it is more natural to use<...>
and it should be (negligibly?) faster. https://en.cppreference.com/w/cpp/preprocessor/includeThoughts?