- 6bec78d Tighten up the conditions under which we build an implicit function by Douglas Gregor · 15 years ago
- c29f77b Make ASTContext explicitly keep track of the declaration for the C by Douglas Gregor · 15 years ago
- f933437 Fix a problem with false diagnostics when comparing distinct NULL pointer types, from David Majnemer by Douglas Gregor · 15 years ago
- 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 15 years ago
- 4994d2d Catch function redeclarations with incompatible exception specifications. by Sebastian Redl · 15 years ago
- 5ffcd7b Patch to allocate list of bases in CXXRecordDecl using ASTContxt allocation. by Fariborz Jahanian · 15 years ago
- 2e22253 Add support for retrieving the Doxygen comment associated with a given by Douglas Gregor · 15 years ago
- 73b85f3 Use Destroy for member initializer list clean up. by Fariborz Jahanian · 15 years ago
- cca9e96 Keep track of more information within the template instantiation stack, e.g., by Douglas Gregor · 15 years ago
- 9617433 Patch to implement template types in ctor-initializer list. by Fariborz Jahanian · 15 years ago
- 7154a77 Rework Sema::CheckConditionalOperands(). No functionality change. by Steve Naroff · 15 years ago
- 16134c6 Cope with explicitly-specified function template arguments when there by Douglas Gregor · 15 years ago
- 6db8ed4 When explicit template arguments are provided for a function call, by Douglas Gregor · 15 years ago
- bcfad54 Patch to support optional nested-name-specifier in in ctor-initializer list. by Fariborz Jahanian · 15 years ago
- edce4dd Preliminary parsing and ASTs for template-ids that refer to function by Douglas Gregor · 15 years ago
- 5ac3dfc Diagnose multiple initialization of anonymous union by Fariborz Jahanian · 15 years ago
- 9da7201 More diagnostics related to initialization of direct bases by Fariborz Jahanian · 15 years ago
- b33fe2f When recursively instantiating function templates, keep track of the by Douglas Gregor · 15 years ago
- 514b7b1 Compute ending of iterator in for-loop once. by Fariborz Jahanian · 15 years ago
- 751f9a4 Refactor ActOnDeclarationNameExpr into a "parsing action" part and a by Douglas Gregor · 15 years ago
- 149f138 Implement PR4175, catching some questionable comparisons. Patch by by Chris Lattner · 15 years ago
- 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
- 6fb0aee Remove the ASTContext parameter from the getBody() methods of Decl and subclasses. by Argyrios Kyrtzidis · 15 years ago
- 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
- 16dbdce Take care of Chris's comments. by Fariborz Jahanian · 15 years ago
- 8d4655d Make an error message more clear. by Anders Carlsson · 15 years ago
- 47deacf A more detailed diagnosis of ill-formed ctor-initializer list. by Fariborz Jahanian · 15 years ago
- af017e6 Improvements to decltype. We now don't crash anymore when the expr is an overloaded function decl. by Anders Carlsson · 15 years ago
- 7881a05 Diagnose multiple initialzation of data-member/base by Fariborz Jahanian · 15 years ago
- 74add6d Remove some dead code by Anders Carlsson · 15 years ago
- 127102b Keep track of function template specializations, to eliminate by Douglas Gregor · 15 years ago
- 001d64d Fix the FloatingLiteral API to take the isexact flag by value instead of by Chris Lattner · 15 years ago
- 683087f Remove ASTContext::getObjCQualifiedIdType(). by Steve Naroff · 15 years ago
- d966a55 Move the check for vprintf* functions inside of SemaCheckStringLiteral. Fixes PR4470. by Anders Carlsson · 15 years ago
- dde2598 Fix incorrect AST's being produced, noticed by Eli. by Nate Begeman · 15 years ago
- 1bd1f6e OpenCL 1.0 support: by Nate Begeman · 15 years ago
- 9b10da6 Implement feedback from Eli re: the purpose of lax vector conversions by Nate Begeman · 15 years ago
- 364e021 Improve support for overloaded operator templates. by Douglas Gregor · 15 years ago
- f8d736c Renamed MarcDestructorReferenced -> MarkDestructorReferenced by Fariborz Jahanian · 15 years ago
- 5d39dee Fix a bogus error overloading an operator where the only class by Eli Friedman · 15 years ago
- 8f031b3 Implement support for the format_arg attribute. Fixes PR4442. by Anders Carlsson · 15 years ago
- 0c6139d Make it possible for using decls to point to operators. Fixes PR4441. by Anders Carlsson · 15 years ago
- 8d2b356 Patch to mark destructors when they are used. by Fariborz Jahanian · 15 years ago
- 4112877 Set the rest of the flags we need to perform template argument by Douglas Gregor · 15 years ago
- 508f1c8 During template argument deduction from a function call, allow by Douglas Gregor · 15 years ago
- baf45d3 More auto work. by Anders Carlsson · 15 years ago
- 8a5cb11 A little template argument deduction test uncovered an "oops". As part by Douglas Gregor · 15 years ago
- f670c8c Template argument deduction is no longer responsible for checking by Douglas Gregor · 15 years ago
- e7cf07d Can't have arrays of auto. by Anders Carlsson · 15 years ago
- e2bb224 An auto variable can't appear in its own initializer. by Anders Carlsson · 15 years ago
- e89d159 Implement enough of the 'auto' keyword so we can claim to support N2546. by Anders Carlsson · 15 years ago
- 500d331 Improve template argument deduction for reference parameters when by Douglas Gregor · 15 years ago
- c6249b9 Minor change per Doug's comments. - Fariborz by Fariborz Jahanian · 15 years ago
- 6f3d838 OpenCL 1.0 support: attributes by Nate Begeman · 15 years ago
- e136e0e Add NamedDecl::getUnderlyingDecl that can see through UsingDecl and ObjCCompatibleAliasDecl. by Anders Carlsson · 15 years ago
- 58badb7 See through UsingDecls in more places. by Anders Carlsson · 15 years ago
- 5e50569 Fix failing test. by Anders Carlsson · 15 years ago
- b78d833 Improve error recovery in C++: when we hit 'implicit int' cases in C++, by Chris Lattner · 15 years ago
- bc13ab2 Fix another assert related to using decls. by Anders Carlsson · 15 years ago
- 8b50d01 When creating LookupResults, see through UsingDecls. Fixes PR4450. by Anders Carlsson · 15 years ago
- 87471f5 Fix PR4448. by Anders Carlsson · 15 years ago
- 58d29a4 OpenCL 1.0 support: explicit casts to ext-vector types by Nate Begeman · 15 years ago
- 1637be7 Implicit instantiation for function template specializations. by Douglas Gregor · 15 years ago
- e53060f Improved semantic analysis and AST respresentation for function templates. by Douglas Gregor · 15 years ago
- c75bc2d Patch to diagnose and Mark use of implicit default assignment operator. by Fariborz Jahanian · 15 years ago
- 131f465 OpenCL 1.0 Support, patch 1/N: upper case swizzle operator and hex element index. by Nate Begeman · 15 years ago
- 16f1930 Set the end range location of a FunctionDecl to the right paren. by Argyrios Kyrtzidis · 15 years ago
- 6887e63 Explicit braces to avoid ambiguous ‘else’. by Duncan Sands · 15 years ago
- f5ed9e0 Backed out my last patch which caused a clang-test breakage. Will by Fariborz Jahanian · 15 years ago
- 60a9a2a C++ decltype support (N2343) by Anders Carlsson · 15 years ago
- ecce131 Added a missing else part to my previous patche(s). by Fariborz Jahanian · 15 years ago
- 395b475 Add a DecltypeType type. by Anders Carlsson · 15 years ago
- 6fd634f Parse the C++0x decltype specifier. by Anders Carlsson · 15 years ago
- 34d1dc9 Implement matching of function templates, so that one can declare overloaded function templates. C++ [temp.over.link] paragraphs 4-8. by Douglas Gregor · 15 years ago
- 52591bf Make sure that the template parameter lists get from the parser down to ActOnFunctionDeclarator for function template definitions by Douglas Gregor · 15 years ago
- e98da2e Support for [class.local]p4. by Anders Carlsson · 15 years ago
- c5c903a When declaring a function template, create a FunctionTemplateDecl node by Douglas Gregor · 15 years ago
- e41590d [class.local] p1 and p3. Also, add back the xcodeproj file. by Anders Carlsson · 15 years ago
- 220a0f3 Some changes to accomodate Doug's comment for by Fariborz Jahanian · 15 years ago
- e542c86 Start propagating template parameter lists to the right places to by Douglas Gregor · 15 years ago
- 2e01cda Eliminate DeclPtrTy() arguments to ActOnDeclarator that are just a very, very weird way to pass "false". No functionality change by Douglas Gregor · 15 years ago
- 44bc2d5 Make sure that argument-dependent lookup looks into the global scope by Douglas Gregor · 15 years ago
- fb25052 Check in a new template argument list builder that should work better for variadic templates. by Anders Carlsson · 15 years ago
- 485f087 patch to mark use of implicit copy constructors. by Fariborz Jahanian · 15 years ago
- 4c4f7cb Robustify a bunch of C++-related declaration actions. by Douglas Gregor · 15 years ago
- d7f37bf Implement implicit instantiation of the member functions of a class template by Douglas Gregor · 15 years ago
- ac7610d Rework the way we track which declarations are "used" during by Douglas Gregor · 15 years ago
- 05a5c45 Changes made per Doug's comments. by Fariborz Jahanian · 15 years ago
- b7f4cc0 Remove ImplicitMustBeDefined, use universal 'Used' flag by Fariborz Jahanian · 15 years ago
- 3da83eb Made improvements in c++'s object model patch on Doug's review. by Fariborz Jahanian · 15 years ago
- 9cfbe48 Parsing and AST support for using declarations, from John Thompson! by Douglas Gregor · 15 years ago
- e0762c9 Keep track of when declarations are "used" according to C and by Douglas Gregor · 15 years ago
- 7d5c74e Use QualType to represent block's implicit return type as by Fariborz Jahanian · 15 years ago
- f8dcb86 Patch for implementation of C++'s object model. This is work in progress. by Fariborz Jahanian · 15 years ago
- f6ddb73 Some cleanups suggested by Chris by Douglas Gregor · 15 years ago
- 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago
- c19ee3e Diagnose class members that shadow a template parameter. Fixes by Douglas Gregor · 15 years ago
- 179fe1a Fix some erroneous comments due to trigger-happy copy&paste. by Argyrios Kyrtzidis · 15 years ago
- 1d17553 Factor out some common code into Sema::EnterDeclaratorContext/ExitDeclaratorContext. by Argyrios Kyrtzidis · 15 years ago
- 0ffd9ff Implement correct name lookup inside an initializer of a C++ class static data member. by Argyrios Kyrtzidis · 15 years ago