llvm-project/clang/lib/Format
Daniel Jasper 3ae6f5a47b clang-format: Improve format of calls with several lambdas.
Before:
  SomeFunction([]() {
                 int i = 42;
                 return i;
               },
               []() {
    int j = 43;
    return j;
  });

After:
  SomeFunction([]() {
                 int i = 42;
                 return i;
               },
               []() {
                 int j = 43;
                 return j;
               });

llvm-svn: 205848
2014-04-09 12:08:39 +00:00
..
BreakableToken.cpp Preserve hanging indent when breaking line comments. 2014-03-10 13:14:56 +00:00
BreakableToken.h [C++11] Add 'override' keyword to virtual methods that override their base class. 2014-03-15 04:29:04 +00:00
CMakeLists.txt [CMake] Use LINK_LIBS instead of target_link_libraries(). 2014-02-26 06:41:29 +00:00
ContinuationIndenter.cpp clang-format: Improve format of calls with several lambdas. 2014-04-09 12:08:39 +00:00
ContinuationIndenter.h clang-format: Improve format of calls with several lambdas. 2014-04-09 12:08:39 +00:00
Encoding.h Fix crash in getStringSplit. 2013-11-26 10:38:53 +00:00
Format.cpp clang-format: Extend AllowShortFunctions.. to only merge inline functions. 2014-04-08 12:46:38 +00:00
FormatToken.cpp clang-format: Enable formatting of lambdas with explicit return type. 2014-01-16 09:11:55 +00:00
FormatToken.h clang-format: Support configurable list of foreach-macros. 2014-04-01 12:55:11 +00:00
Makefile
TokenAnnotator.cpp clang-format: Allow breaking between trailing annotations in more cases. 2014-04-09 10:29:11 +00:00
TokenAnnotator.h clang-format: Improve selective formatting of nested statements. 2013-11-28 15:58:55 +00:00
UnwrappedLineParser.cpp clang-format: Support configurable list of foreach-macros. 2014-04-01 12:55:11 +00:00
UnwrappedLineParser.h Replace OwningPtr with std::unique_ptr. 2014-03-07 20:03:18 +00:00
WhitespaceManager.cpp clang-format: Fix aligning of comments and escaped newlines in macros. 2014-03-28 15:06:01 +00:00
WhitespaceManager.h Fix a tranche of comment, test and doc typos 2013-12-05 16:25:25 +00:00