goldsborough / lru-cache

:dizzy: A feature complete LRU cache implementation in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use of angle brackets around file names for include statements

elfring opened this issue · comments

Interesting, I figure that technically it would make more sense for a library like this one to use angle brackets since the files will most likely not be in the same directory. In practice I've never found it to be an issue and I like the visual distinction of <standard> vs. "mine.h". What's your opinion?

I suggest to reconsider the consequences of the following wording from the section "16.2 Source file inclusion" in the standard specification for the programming language "C++".

…
The named source file is searched for in an implementation-defined manner. If this search is not supported, or if the search fails, the directive is reprocessed as if it read

#include <h-char-sequence> new-line
…

Replaced #include "..." with #include <...>

Which commits will contain corresponding changes?

Forgot to push the commit back then. Thanks.