llvm-project/clang/lib/Format
Dinesh Dwivedi ea3aca8b67 Fixes issue with Allman BreakBeforeBraces for Objective C @interface
Before:
        @interface BSApplicationController () {
    @private
      id _extraIvar;
    }
    @end

After:
    @interface BSApplicationController ()
    {
    @private
      id _extraIvar;
    }
    @end

llvm-svn: 207849
2014-05-02 17:01:46 +00:00
..
BreakableToken.cpp [Modules] Fix potential ODR violations by sinking the DEBUG_TYPE 2014-04-22 03:17:02 +00:00
BreakableToken.h Fix alignment of trailing block comments. 2014-04-17 16:12:46 +00:00
CMakeLists.txt [CMake] Use LINK_LIBS instead of target_link_libraries(). 2014-02-26 06:41:29 +00:00
ContinuationIndenter.cpp Fix typo (first commit to test commit access). 2014-05-01 17:19:34 +00:00
ContinuationIndenter.h clang-format: Don't allow hanging indentation for operators on new lines 2014-04-14 11:08:45 +00:00
Encoding.h Fix crash in getStringSplit. 2013-11-26 10:38:53 +00:00
Format.cpp clang-format: Remove accidentally added debug output. 2014-04-29 15:35:28 +00:00
FormatToken.cpp clang-format: Respect BinPackParameters in Cpp11BracedListStyle. 2014-04-17 11:32:02 +00:00
FormatToken.h clang-format: Add special case to reduce indentaiton in streams. 2014-04-16 12:26:54 +00:00
Makefile
TokenAnnotator.cpp clang-format: Improve binary operator detection. 2014-04-28 09:19:28 +00:00
TokenAnnotator.h clang-format: Improve selective formatting of nested statements. 2013-11-28 15:58:55 +00:00
UnwrappedLineParser.cpp Fixes issue with Allman BreakBeforeBraces for Objective C @interface 2014-05-02 17:01:46 +00:00
UnwrappedLineParser.h Format code around VCS conflict markers. 2014-04-14 09:14:11 +00:00
WhitespaceManager.cpp clang-format: Fix bug when aligning trailing /**/-comments in macros. 2014-04-27 10:03:19 +00:00
WhitespaceManager.h Fix alignment of trailing block comments. 2014-04-17 16:12:46 +00:00