diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-09-18 15:51:54 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-09-18 15:51:54 +0000 |
commit | 2da11086f31368e630ec24638ceab94f280df70b (patch) | |
tree | eba06dad814c2780160de48f562d5990e31c630d /clang/test/CodeCompletion | |
parent | f45b0cf38910ede9cfae839ce00d6b39a880fed8 (diff) | |
download | bcm5719-llvm-2da11086f31368e630ec24638ceab94f280df70b.tar.gz bcm5719-llvm-2da11086f31368e630ec24638ceab94f280df70b.zip |
When gathering results for code completion, only include hidden
results when there is some way to refer to them in the language, such
as with a qualified name in C++.
llvm-svn: 82223
Diffstat (limited to 'clang/test/CodeCompletion')
-rw-r--r-- | clang/test/CodeCompletion/tag.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/test/CodeCompletion/tag.c b/clang/test/CodeCompletion/tag.c index 06a2e204744..35ddda273e2 100644 --- a/clang/test/CodeCompletion/tag.c +++ b/clang/test/CodeCompletion/tag.c @@ -11,5 +11,4 @@ void test() { enum X { x }; // CHECK-CC1: X : 0 // CHECK-CC1: Y : 2 - // CHECK-CC1: X : 2 (Hidden) enum |