1. 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  2. e861bac Improve support for out-of-line definitions of nested templates and by Douglas Gregor · 16 years ago
  3. 33c70c9 Consider nested-names as part of the declarator when resolving an ambiguous statement. by Argyrios Kyrtzidis · 16 years ago
  4. a9ad47d Basic support for C++0x unicode types. Support for literals will follow in an incremental patch by Alisdair Meredith · 16 years ago
  5. 74948d0 Parse the C++0x decltype specifier. by Anders Carlsson · 16 years ago
  6. 53339e0 Add more parser support for Microsoft extensions. by Eli Friedman · 16 years ago
  7. 12179bc Handle correctly a very ugly part of the C++ syntax. We cannot disambiguate between a parenthesized type-id and by Argyrios Kyrtzidis · 16 years ago
  8. 333489b Initial implementation of parsing, semantic analysis, and template by Douglas Gregor · 17 years ago
  9. 9eac931 Fix rdar://6719156 - clang should emit a better error when blocks are disabled but are used anyway by Chris Lattner · 17 years ago
  10. f24fcff6 Add parser support for static_assert. by Anders Carlsson · 17 years ago
  11. 97f3457 Teach the type-id/expression disambiguator about different by Douglas Gregor · 17 years ago
  12. 60f3622 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 17 years ago
  13. 7368d58 Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 17 years ago
  14. c6d52f5 Make tentative parsing of pointer-to-member decls work, and fix other stuff pointed out by Doug. by Sebastian Redl · 17 years ago
  15. f192fab Another tweak to handle the MS extensions (<rdar://problem/5956221>). by Steve Naroff · 17 years ago
  16. 1f42c2e Fix <rdar://problem/5956221> clang ObjC rewriter: Microsoft-specific __fastcall keyword unrecognized. by Steve Naroff · 17 years ago
  17. a8a3f73 rename tok::annot_qualtypename -> tok::annot_typename, which is both by Chris Lattner · 17 years ago
  18. b7895c4 push the call in isCXXDeclarationSpecifier to TryAnnotateTypeOrScopeToken by Chris Lattner · 17 years ago
  19. ec8806e Removed the warning by Douglas Gregor · 17 years ago
  20. 399f965 Teach tentative parsing to handle block pointers (rdar://6394309) by Chris Lattner · 17 years ago
  21. 3d31c6c remove the last couple obsolete forms of Parser::Diag. by Chris Lattner · 17 years ago
  22. 32a0379 Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parser side. by Argyrios Kyrtzidis · 17 years ago
  23. 3a0558a Just do a diagIfAmbiguous -> warnIfAmbiguous rename. No functionality change. by Argyrios Kyrtzidis · 17 years ago
  24. 84a4df8 Issue a warning when there's an ambiguous function declarator (that could be a direct initializer for a variable defition). by Argyrios Kyrtzidis · 17 years ago
  25. 4217c7e A tiny optimization; use isCXXFunctionDeclarator only when it's appropriate. by Argyrios Kyrtzidis · 17 years ago
  26. 279d981 Add some text from the C++ standard and additional ambiguity resolution tests. by Argyrios Kyrtzidis · 17 years ago
  27. 2b1ef22 Handle ambiguities between expressions and type-ids that occur inside parentheses, e.g.: by Argyrios Kyrtzidis · 17 years ago
  28. df788f4 Found a subtle bug caused by an implicit enum-to-bool conversion (of the TentativeParsingResult enum). by Argyrios Kyrtzidis · 17 years ago
  29. 2534620 Fix Parser::isCXXConditionDeclaration to properly resolve declarations. by Argyrios Kyrtzidis · 17 years ago
  30. 71f3e19 Disambiguate between a declaration or expression for the 'condition' part of a if/switch/while/for statement. by Argyrios Kyrtzidis · 17 years ago
  31. 7b87f27 Consider GNU attributes when doing ambiguity resolution. by Argyrios Kyrtzidis · 17 years ago
  32. 2c7137d Resolve ambiguous C++ statements (C++ 6.8p1). by Argyrios Kyrtzidis · 17 years ago