diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-07-30 17:50:56 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-07-30 17:50:56 +0000 |
commit | c5b8c9b6607de7ce25a28f26a34f43efa5728cb7 (patch) | |
tree | 0722fdea4616cac8f0d50fc41c69ff26e6660809 /lib/Sema/SemaCXXScopeSpec.cpp | |
parent | 426cc3828ce07a2cff15c9837f5958e6fc4b7739 (diff) |
What luck! Clang obtains support for refering to members of the
current instantiation when that current instantiation is a class
template partial specialization.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77609 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaCXXScopeSpec.cpp')
-rw-r--r-- | lib/Sema/SemaCXXScopeSpec.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Sema/SemaCXXScopeSpec.cpp b/lib/Sema/SemaCXXScopeSpec.cpp index 1580e721d3..076685b808 100644 --- a/lib/Sema/SemaCXXScopeSpec.cpp +++ b/lib/Sema/SemaCXXScopeSpec.cpp @@ -189,7 +189,8 @@ CXXRecordDecl *Sema::getCurrentInstantiationOf(NestedNameSpecifier *NNS) { // list of the partial specialization enclosed in <>. If // the nth template parameter is a parameter pack, the nth // template argument is a pack expansion (14.6.3) whose - // pattern is the name of the parameter pack. (FIXME) + // pattern is the name of the parameter pack. + // (FIXME: parameter packs) // // All of these options come down to having the // nested-name-specifier type that is equivalent to the |