forked from OSchip/llvm-project
264ec4f237
CXXRecordDecl that is used to represent class template specializations. These are canonical declarations that can refer to either an actual class template specialization in the code, e.g., template<> class vector<bool> { }; or to a template instantiation. However, neither of these features is actually implemented yet, so really we're just using (and uniqing) the declarations to make sure that, e.g., A<int> is a different type from A<float>. Note that we carefully distinguish between what the user wrote in the source code (e.g., "A<FLOAT>") and the semantic entity it represents (e.g., "A<float, int>"); the former is in the sugared Type, the latter is an actual Decl. llvm-svn: 64716 |
||
---|---|---|
.. | ||
class-template-decl.cpp | ||
class-template-id.cpp | ||
default-arguments.cpp | ||
temp_arg.cpp | ||
temp_arg_nontype.cpp | ||
temp_arg_template.cpp | ||
temp_arg_type.cpp | ||
temp_param.cpp |