1. 030ff0c Semantic checking of constructor declarations and classification of default/copy constructors by Douglas Gregor · 16 years ago
  2. 60d62c2 Implement basic support for converting constructors in user-defined by Douglas Gregor · 16 years ago
  3. 31fc07d Made the mechanism of defining preprocessor defs for maxint, ptrdiff_t, wchar by Sanjiv Gupta · 16 years ago
  4. b48fe38 Add support for parsing and representing C++ constructor declarations. by Douglas Gregor · 16 years ago
  5. 3205a78 Improve documentation for Sema::CheckReferenceInit by Douglas Gregor · 16 years ago
  6. f70bdb9 Implement overloading rules for reference binding by Douglas Gregor · 16 years ago
  7. 15da57e Tweak Sema::CheckReferenceInit so that it (optionally) computes an by Douglas Gregor · 16 years ago
  8. 27c8dc0 Implement initialization of a reference (C++ [dcl.init.ref]) as part by Douglas Gregor · 16 years ago
  9. 57c856b Clean up and document the representation of C++ base classes by Douglas Gregor · 16 years ago
  10. 0218936 Added GraphViz visualization of C++ inheritance hierarchies. by Douglas Gregor · 16 years ago
  11. f8268ae Add representation of base classes in the AST, and verify that we by Douglas Gregor · 16 years ago
  12. 8e9bebd Preliminary support for function overloading by Douglas Gregor · 16 years ago
  13. d6caa9e Fix this bug: by Argyrios Kyrtzidis · 16 years ago
  14. 154d8e2 Revert my previous change, got stupidly confused with my local changes. by Argyrios Kyrtzidis · 16 years ago
  15. be6e310 Fix a call to Sema::LookupDecl that had incorrect parameters. by Argyrios Kyrtzidis · 16 years ago
  16. de933f0 Fix a bug that crashed clang when parsing this: by Argyrios Kyrtzidis · 16 years ago
  17. ce8e292 Simplify handling of direct initializers by letting Sema::AddInitializerToDecl handle conversions, instead of using Sema::ActOnCXXTypeConstructExpr. by Argyrios Kyrtzidis · 16 years ago
  18. 15f6139 Use "unsigned" instead of "int" for i to remove a "comparison between unsigned and signed" warning (potential integer overflow). by Ted Kremenek · 16 years ago
  19. 06ad1f5 The current semantic process for direct initializers won't work properly for class types. by Argyrios Kyrtzidis · 16 years ago
  20. 73a0d88 Implement support for C++ direct initializers in declarations, e.g. "int x(1);". by Argyrios Kyrtzidis · 16 years ago
  21. 1bfe1c2 Pass postfix attributes to ActOnFields. by Daniel Dunbar · 16 years ago
  22. 2fac626 Use Sema::isDeclInScope instead of IdentifierResolver::isDeclInScope. by Argyrios Kyrtzidis · 16 years ago
  23. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  24. 12bc692 Minor #include cleaning by Daniel Dunbar · 16 years ago
  25. a4755c6 When in C++, invoke ASTConsumer::HandleTagDeclDefinition in Sema::ActOnFinishCXXClassDef, by Argyrios Kyrtzidis · 16 years ago
  26. 5b7f0c8 Passing right brace location to ActOnFinishCXXClassDef is redundant, since it gets passed to ActOnFinishCXXMemberSpecification too. by Argyrios Kyrtzidis · 16 years ago
  27. 914701e Move AsmLabel into Declarator instead of just a parameter to ActOnDeclarator. by Daniel Dunbar · 16 years ago
  28. a80f874 Add more Parser/Sema support for GCC asm-label extension. by Daniel Dunbar · 16 years ago
  29. 39caa08 Wherever a type is used/returned from the Action module, use TypeTy instead of DeclTy or void. by Argyrios Kyrtzidis · 16 years ago
  30. b77792e change more instances of QualType::getCanonicalType to call by Chris Lattner · 16 years ago
  31. 0795232 Add Sema support for C++ classes. by Argyrios Kyrtzidis · 16 years ago
  32. 39ba4ae -Changes to TagDecl: by Argyrios Kyrtzidis · 16 years ago
  33. c9a9200 Oops...remove weird printf:-) by Steve Naroff · 16 years ago
  34. c733388 Second half of "fix" for <rdar://problem/5986085> clang on xcode: error: redefinition of 'XCElementToggler' as different kind of symbol by Steve Naroff · 16 years ago
  35. f494b57 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 16 years ago
  36. 00bc645 -Implement proper name lookup for namespaces. by Argyrios Kyrtzidis · 16 years ago
  37. 6d6eb57 Diagnose attempts to use C++ default arguments outside of a function declaration by Douglas Gregor · 16 years ago
  38. 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 16 years ago
  39. 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 16 years ago
  40. e37ac4f This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 16 years ago
  41. 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 16 years ago
  42. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 16 years ago
  43. 3d1cee3 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago