clang-1/lib/Sema
Douglas Gregor 66724ea67d If we attempt to add a constructor template specialization that looks
like a copy constructor to the overload set, just ignore it. This
ensures that we don't try to use such a constructor as a copy
constructor *without* triggering diagnostics at the point of
declaration.

Note that we *do* diagnose such copy constructors when explicitly
written by the user (e.g., as an explicit specialization).



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88733 91177308-0d34-0410-b5e6-96231b3b80d8
2009-11-14 01:20:54 +00:00
..
CMakeLists.txt Test exception spec compatibility on return type and parameters. 2009-10-11 09:03:14 +00:00
CXXFieldCollector.h Unifies the name-lookup mechanisms used in various parts of the AST 2008-12-11 16:49:14 +00:00
CodeCompleteConsumer.cpp Rework Sema code completion interface. 2009-11-13 08:58:20 +00:00
IdentifierResolver.cpp Remove tabs, and whitespace cleanups. 2009-09-09 15:08:12 +00:00
IdentifierResolver.h Remove tabs, and whitespace cleanups. 2009-09-09 15:08:12 +00:00
JumpDiagnostics.cpp Remove tabs, and whitespace cleanups. 2009-09-09 15:08:12 +00:00
Makefile Installation of Clang libraries and headers, from Axel Naumann! 2009-10-08 22:15:31 +00:00
ParseAST.cpp Rework Sema code completion interface. 2009-11-13 08:58:20 +00:00
Sema.cpp Rework Sema code completion interface. 2009-11-13 08:58:20 +00:00
Sema.h Rework Sema code completion interface. 2009-11-13 08:58:20 +00:00
SemaAccess.cpp Refactor the code that walks a C++ inheritance hierarchy, searching 2009-10-06 17:59:45 +00:00
SemaAttr.cpp Refactor the LookupResult API to simplify most common operations. Require users to 2009-10-09 21:13:30 +00:00
SemaCXXCast.cpp Set CK_BaseToDerived in TryStaticDowncast. 2009-11-12 16:53:16 +00:00
SemaCXXScopeSpec.cpp When starting a C++ member access expression, make sure to compute the 2009-11-04 22:49:18 +00:00
SemaChecking.cpp warn about returning the address of a label. 2009-10-30 04:01:58 +00:00
SemaCodeComplete.cpp Rework Sema code completion interface. 2009-11-13 08:58:20 +00:00
SemaDecl.cpp Revert r88718, which does NOT solve the constructor-template-as-copy-constructor issue. Big thanks to John for finding this 2009-11-13 23:59:09 +00:00
SemaDeclAttr.cpp Add support for cdecl attribute. (As far as I know, it doesn't affect CodeGen 2009-11-09 18:38:53 +00:00
SemaDeclCXX.cpp If we attempt to add a constructor template specialization that looks 2009-11-14 01:20:54 +00:00
SemaDeclObjC.cpp writable atomic property's setter/getter must be in 'lock' step of 2009-11-11 22:40:11 +00:00
SemaExceptionSpec.cpp Have the exception specification checkers take partial diagnostics. Use this to merge two diagnostics. 2009-10-14 16:09:29 +00:00
SemaExpr.cpp Don't bind arguments to temporaries if the argument has a reference type. 2009-11-13 17:04:35 +00:00
SemaExprCXX.cpp Improve source-location information for implicitly-generated member call expressions 2009-11-12 15:31:47 +00:00
SemaExprObjC.cpp Remove default argument for ImpCastExprToType. Add appropriate argument 2009-10-20 08:27:19 +00:00
SemaInit.cpp Remove the ConstantArrayType subtypes. This information is preserved in the 2009-10-16 00:14:28 +00:00
SemaLookup.cpp Introduce a new representation for template template 2009-11-11 01:00:40 +00:00
SemaOverload.cpp If we attempt to add a constructor template specialization that looks 2009-11-14 01:20:54 +00:00
SemaOverload.h This patch implements Sema for clause 13.3.3.1p4. 2009-11-06 00:23:08 +00:00
SemaStmt.cpp If we attempt to add a constructor template specialization that looks 2009-11-14 01:20:54 +00:00
SemaTemplate.cpp Recognize (and check) pointer-to-member template arguments that are 2009-11-12 18:38:13 +00:00
SemaTemplate.h Implement partial ordering of function template specializations 2009-09-14 18:39:43 +00:00
SemaTemplateDeduction.cpp Revert r88718, which does NOT solve the constructor-template-as-copy-constructor issue. Big thanks to John for finding this 2009-11-13 23:59:09 +00:00
SemaTemplateInstantiate.cpp When instantiating a reference to a non-type template parameter of pointer to 2009-11-12 17:40:13 +00:00
SemaTemplateInstantiateDecl.cpp If we attempt to add a constructor template specialization that looks 2009-11-14 01:20:54 +00:00
SemaType.cpp Make sure that Type::getAs<ArrayType>() (or Type::getAs<subclass of 2009-11-09 22:08:55 +00:00
TreeTransform.h When transforming an expression statement (e.g., for template 2009-11-13 18:34:26 +00:00