diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-03-11 16:48:53 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-03-11 16:48:53 +0000 |
commit | 4fdf1faedbca40787fd277a6fbd5061fd69b2708 (patch) | |
tree | 008da53407dbd3facf3ffa4d9c8b1558b2617228 /include/clang/Basic | |
parent | 511d7aba3b12853fdb88729a0313b80a60eab8ad (diff) |
Add basic, hackish support for instantiation of typedefs in a class
template. More importantly, start to sort out the issues regarding
complete types and nested-name-specifiers, especially the question of:
when do we instantiate a class template specialization that occurs to
the left of a '::' in a nested-name-specifier?
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66662 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic')
-rw-r--r-- | include/clang/Basic/DiagnosticSemaKinds.def | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.def b/include/clang/Basic/DiagnosticSemaKinds.def index 4589a97350..2c024de380 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.def +++ b/include/clang/Basic/DiagnosticSemaKinds.def @@ -231,6 +231,10 @@ DIAG(error_property_implemented, ERROR, DIAG(warn_objc_property_attr_mutually_exclusive, WARNING, "property attributes '%0' and '%1' are mutually exclusive") +// C++ name lookup +DIAG(err_incomplete_nested_name_spec, ERROR, + "incomplete type %0 named in nested name specifier") + // C++ class members DIAG(err_storageclass_invalid_for_member, ERROR, "storage class specified for a member declaration") |