google / ion

Ion
Apache License 2.0
1.43k stars 92 forks source link

Use of angle brackets around file names for include statements #11

Closed elfring closed 8 years ago

elfring commented 8 years ago

Would you like to replace any double quotes by angle brackets around file names for include statements?

oon3m0oo commented 8 years ago

Our internal standard is to use angle brackets only for system includes. So thanks for the offer, but it's fine as is. See also: https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes

elfring commented 8 years ago

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
…