1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 06:55:23 +02:00

Clarified JavaDoc

This commit is contained in:
Andrew Gvozdev 2013-02-04 12:49:31 -05:00
parent 2a96dbfc19
commit 94e85e44b1

View file

@ -38,7 +38,8 @@ public interface ICSettingEntry {
/** /**
* Flag {@code LOCAL} is used during creation of {@link IIncludeEntry} * Flag {@code LOCAL} is used during creation of {@link IIncludeEntry}
* to indicate that an include path is not a system path. * to indicate that an include path is not a system path.
* It does not appear it is used anywhere else. * "System" path is denoted by angle brackets as in #include <x.h>
* "Local" path is denoted by quotes as in #include "x.h"
*/ */
int LOCAL = 1 << 2; int LOCAL = 1 << 2;