diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-09-22 23:15:58 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-09-22 23:15:58 +0000 |
commit | 5bf52697b079b4b7c9db9a38c202788743d7264d (patch) | |
tree | b6b3ffa4b827c85b1ee51df593f3f60ca9757834 /clang/test/CodeCompletion/using.cpp | |
parent | cc52f65500cc929fcf4e4eab37025a1a31dd8761 (diff) | |
download | bcm5719-llvm-5bf52697b079b4b7c9db9a38c202788743d7264d.tar.gz bcm5719-llvm-5bf52697b079b4b7c9db9a38c202788743d7264d.zip |
Tweak the code-completion results ranking and formation, so that
members found in base classes have the same ranking as members found
in derived classes. However, we will introduce an informative note for
members found in base classes, showing (as a nested-name-specifier)
the qualification to name the base class, to make it clear which
members are from bases.
llvm-svn: 82586
Diffstat (limited to 'clang/test/CodeCompletion/using.cpp')
-rw-r--r-- | clang/test/CodeCompletion/using.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeCompletion/using.cpp b/clang/test/CodeCompletion/using.cpp index 27b85fc7661..dac556e151a 100644 --- a/clang/test/CodeCompletion/using.cpp +++ b/clang/test/CodeCompletion/using.cpp @@ -18,8 +18,8 @@ namespace N2 { // CHECK-CC1: I1 : 2 // CHECK-CC1: I4 : 2 // CHECK-CC1: I5 : 2 - // CHECK-CC1: N2 : 3 - // CHECK-CC1: N3 : 3 - // CHECK-NEXT-CC1: N4 : 3 + // CHECK-CC1: N2 : 4 + // CHECK-CC1: N3 : 4 + // CHECK-NEXT-CC1: N4 : 4 // RUN: true |