wisk / medusa

An open source interactive disassembler
Other
1.04k stars 92 forks source link

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

Open elfring opened 10 years ago

elfring commented 10 years ago

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

wisk commented 10 years ago

Please, tell me if I'm wrong but these included headers are the part of the program (unlike modules), so isn't it ok to use double quotes instead of angle brackets? I know these files aren't on the same location (/inc/medusa vs. /src/core), but it's the same entity.

elfring commented 10 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
…