]> granicus.if.org Git - clang/commitdiff
Fixes indent in linkage specification blocks.
authorManuel Klimek <klimek@google.com>
Mon, 21 Jan 2013 14:32:05 +0000 (14:32 +0000)
committerManuel Klimek <klimek@google.com>
Mon, 21 Jan 2013 14:32:05 +0000 (14:32 +0000)
We now indent:
extern "C" {
int a;
}

without additional indent inside the extern "C" block.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173045 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Format/UnwrappedLineParser.cpp
unittests/Format/FormatTest.cpp

index 7f9e97eab009a02b42ddf72268747cb55ccb03a3..f1d08a6bdf801b9fb1172f136dded829f5431066 100644 (file)
@@ -311,6 +311,18 @@ void UnwrappedLineParser::parseStructuralElement() {
   case tok::kw_return:
     parseReturn();
     return;
+  case tok::kw_extern:
+    nextToken();
+    if (FormatTok.Tok.is(tok::string_literal)) {
+      nextToken();
+      if (FormatTok.Tok.is(tok::l_brace)) {
+        parseBlock(0);
+        addUnwrappedLine();
+        return;
+      }
+    }
+    // In all other cases, parse the declaration.
+    break;
   default:
     break;
   }
index f8c454b7bc6d5513cbf8c37cfa6f5a08bfb9e97a..f67cd8c222d246a6ec23fcb7c36f0589d0e88d3d 100644 (file)
@@ -526,6 +526,10 @@ TEST_F(FormatTest, FormatsNamespaces) {
                "void f() { f(); }");
 }
 
+TEST_F(FormatTest, FormatsExternC) {
+  verifyFormat("extern \"C\" {\nint a;");
+}
+
 TEST_F(FormatTest, FormatTryCatch) {
   // FIXME: Handle try-catch explicitly in the UnwrappedLineParser, then we'll
   // also not create single-line-blocks.