Limit our MSVC compat hack for nested names from dependent bases
Previously, any undeclared unqualified id starting a nested name specifier in a dependent context would have its lookup retried during template instantiation. Now we limit that retry hack to methods of a class with dependent bases. Free function templates in particular are no longer affected by this hack. Also, diagnose this as a Microsoft extension. This has the downside that template authors may see this warning *and* an error during instantiation time about this identifier. Fixing that will probably require formalizing some kind of "delayed" identifier, instead of our ad-hoc solutions of forming dependent AST nodes when lookup fails. Based on a patch by Kim Gräsman! Differential Revision: http://reviews.llvm.org/D4854 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@215683 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- lib/Sema/SemaCXXScopeSpec.cpp 7 additions, 2 deletionslib/Sema/SemaCXXScopeSpec.cpp
- test/SemaTemplate/lookup-dependent-bases.cpp 49 additions, 14 deletionstest/SemaTemplate/lookup-dependent-bases.cpp
- test/SemaTemplate/ms-lookup-template-base-classes.cpp 12 additions, 2 deletionstest/SemaTemplate/ms-lookup-template-base-classes.cpp
Loading
Please register or sign in to comment