Reverting changes from r173785 (removing empty lines before "}").
authorDaniel Jasper <djasper@google.com>
Tue, 29 Jan 2013 10:00:16 +0000 (10:00 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 29 Jan 2013 10:00:16 +0000 (10:00 +0000)
This needs some more thinking, e.g. for namespaces, chains of if-else
if, ...

llvm-svn: 173787

clang/lib/Format/Format.cpp
clang/unittests/Format/FormatTest.cpp

index 58e6648..8eebda0 100644 (file)
@@ -1990,8 +1990,6 @@ private:
                                  Style.MaxEmptyLinesToKeep + 1);
     if (Newlines == 0 && !Tok.IsFirst)
       Newlines = 1;
-    if (Tok.Tok.is(tok::r_brace) && Newlines > 1)
-      Newlines = 1;
     unsigned Indent = Level * 2;
 
     bool IsAccessModifier = false;
index ef242d7..63110bb 100644 (file)
@@ -136,7 +136,6 @@ TEST_F(FormatTest, FormatsUnwrappedLinesAtFirstFormat) {
 
 TEST_F(FormatTest, FormatsNestedBlockStatements) {
   EXPECT_EQ("{\n  {\n    {}\n  }\n}", format("{{{}}}"));
-  EXPECT_EQ("{\n  {\n    {}\n  }\n}", format("{{{}}\n\n}"));
 }
 
 TEST_F(FormatTest, FormatsNestedCall) {