diff options
author | Sam McCall <sam.mccall@gmail.com> | 2018-01-24 17:50:20 +0000 |
---|---|---|
committer | Sam McCall <sam.mccall@gmail.com> | 2018-01-24 17:50:20 +0000 |
commit | abdcc613b6f7a8ff4463f3adc19cc9cc46e91d23 (patch) | |
tree | 2c53a60aeaca241b49404af8c011889729d66253 /clang/include/clang-c | |
parent | cf3ad5841b7172250f237b48ffd0cace2e2184f5 (diff) | |
download | bcm5719-llvm-abdcc613b6f7a8ff4463f3adc19cc9cc46e91d23.tar.gz bcm5719-llvm-abdcc613b6f7a8ff4463f3adc19cc9cc46e91d23.zip |
[CodeComplete] only respect LoadExternal hint at namespace/tu scope
Reviewers: ilya-biryukov
Subscribers: cfe-commits
Differential Revision: https://reviews.llvm.org/D42428
llvm-svn: 323347
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index f1a58f8e08a..ebbf38975a1 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -5247,9 +5247,9 @@ enum CXCodeComplete_Flags { CXCodeComplete_IncludeBriefComments = 0x04, /** - * \brief Whether to speed up completion by omitting some entities which are - * defined in the preamble. There's no guarantee any particular entity will - * be omitted. This may be useful if the headers are indexed externally. + * Whether to speed up completion by omitting top- or namespace-level entities + * defined in the preamble. There's no guarantee any particular entity is + * omitted. This may be useful if the headers are indexed externally. */ CXCodeComplete_SkipPreamble = 0x08 }; |