llvm-project/clang/lib
Daniel Jasper b9edcfb018 clang-format: Don't wrap before the ] of a lambda introducer.
Before:
  return aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa([=
  ](int iiiiiiiiiiii) {
    return aaaaaaaaaaaaaaaaaaaaaaa != aaaaaaaaaaaaaaaaaaaaaaa;
  });

After:
  return aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa([=](
      int iiiiiiiiiiii) {
    return aaaaaaaaaaaaaaaaaaaaaaa != aaaaaaaaaaaaaaaaaaaaaaa;
  });

llvm-svn: 241583
2015-07-07 13:50:50 +00:00
..
ARCMigrate Switch users of the 'for (StmtRange range = stmt->children(); range; ++range)‘ pattern to range for loops. 2015-07-02 21:03:14 +00:00
AST Changing a use of alignof() into llvm::alignOf() for MSVC compatibility. This requires changing a static_assert into an assert, too. 2015-07-07 12:50:30 +00:00
ASTMatchers Replace some const std::string & with llvm::StringRef or std::string 2015-07-06 08:47:15 +00:00
Analysis Rewrite users of Stmt::child_begin/end into for-range loops. 2015-07-03 15:12:24 +00:00
Basic Implement the Objective-C __kindof type qualifier. 2015-07-07 03:58:42 +00:00
CodeGen Silence -Wparentheses warnings (and ran it through clang-format); NFC. 2015-07-07 13:25:57 +00:00
Driver Add a comment to explain how the decision to pass feature "+long-calls" is made. 2015-07-07 08:28:42 +00:00
Edit [edit] Don't hit an assert when trying to delete a trailing space at EOF 2015-03-29 18:07:29 +00:00
Format clang-format: Don't wrap before the ] of a lambda introducer. 2015-07-07 13:50:50 +00:00
Frontend [libclang] Replace ObjC generic parameters in code-completion results. 2015-07-07 06:20:19 +00:00
FrontendTool Provide a BuryPointer for unique_ptrs. 2014-08-29 16:53:14 +00:00
Headers Add the missing return statements from revision 241399. 2015-07-05 10:54:10 +00:00
Index Rename MacroDefinition -> MacroDefinitionRecord, Preprocessor::MacroDefinition -> MacroDefinition. 2015-05-04 02:25:31 +00:00
Lex Implement variance for Objective-C type parameters. 2015-07-07 03:58:54 +00:00
Parse Silence a -Wunused-variable warning; NFC. 2015-07-07 13:21:26 +00:00
Rewrite Revert r240270 ("Fixed/added namespace ending comments using clang-tidy"). 2015-06-22 23:07:51 +00:00
Sema Silence a -Wcast-qual warning; NFC. 2015-07-07 13:22:55 +00:00
Serialization Implement variance for Objective-C type parameters. 2015-07-07 03:58:54 +00:00
StaticAnalyzer Rewrite users of Stmt::child_begin/end into for-range loops. 2015-07-03 15:12:24 +00:00
Tooling Driver: Remove the Job class. NFC 2015-07-02 22:52:08 +00:00
CMakeLists.txt Fix build with various feature flag combinations 2014-07-14 22:17:22 +00:00
Makefile Make clang's rewrite engine a core feature 2014-07-16 16:48:33 +00:00