llvm-project/clang/lib
Daniel Jasper 9a8d48b5e1 clang-format: Fix parsing and indenting lambdas.
Before:
  void f() {
    other(x.begin(), x.end(), //
                         [&](int, int) { return 1; });
  }

After:
  void f() {
    other(x.begin(), x.end(), //
          [&](int, int) { return 1; });
  }

llvm-svn: 190039
2013-09-05 10:04:31 +00:00
..
ARCMigrate ObjectiveC migrator: start introducing NS_XXX annotations 2013-09-04 22:49:19 +00:00
AST Note when a decl is used in AST files. 2013-09-05 00:02:25 +00:00
ASTMatchers Reduce the number of symbols by changing how templates are instantiated per function bound in the registry. 2013-08-30 15:09:52 +00:00
Analysis Fix non-void return warning, and format. 2013-09-03 20:43:00 +00:00
Basic Add support for -march=slm, aka Intel Atom Silvermont. 2013-08-30 14:05:34 +00:00
CodeGen Reapply r189013 (reverted in r189906) now that the underlying issue is fixed and tested (in r189996) 2013-09-04 22:03:57 +00:00
Driver Tweak implementation of -Wwrite-strings to better match the behavior of current GCCs: 2013-09-04 22:50:31 +00:00
Edit ObjectiveC migrator: Remove semicolon after the typedef 2013-07-18 22:17:33 +00:00
Format clang-format: Fix parsing and indenting lambdas. 2013-09-05 10:04:31 +00:00
Frontend Note when a decl is used in AST files. 2013-09-05 00:02:25 +00:00
FrontendTool ObjectiveC migrator. This patch infers readonly properties for no-parameter 2013-08-28 23:22:46 +00:00
Headers Typo. 2013-08-31 00:27:38 +00:00
Index Avoid using the 'index' namespace as scope. 2013-08-21 00:49:25 +00:00
Lex Use new UnicodeCharSet interface. 2013-08-29 12:12:31 +00:00
Parse For "expected unqualified-id" errors after a double colon, and the double colon 2013-09-05 02:31:33 +00:00
Rewrite Properly escape filenames in line directives. 2013-08-29 01:42:42 +00:00
Sema Note when a decl is used in AST files. 2013-09-05 00:02:25 +00:00
Serialization Note when a decl is used in AST files. 2013-09-05 00:02:25 +00:00
StaticAnalyzer Switched FormatAttr to using an IdentifierArgument instead of a StringArgument since that is a more accurate modeling. 2013-09-03 21:02:22 +00:00
Tooling Adding a vector version of clang::tooling::shiftedCodePosition(). 2013-08-27 15:44:26 +00:00
CMakeLists.txt Fix dependencies now that the ARC migrator depends on the static analyzer. 2013-08-22 15:50:02 +00:00
Makefile Fix dependencies now that the ARC migrator depends on the static analyzer. 2013-08-22 15:50:02 +00:00