clang-format: Don't put useless space in f( ::g()).
authorDaniel Jasper <djasper@google.com>
Thu, 7 Feb 2013 21:08:36 +0000 (21:08 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 7 Feb 2013 21:08:36 +0000 (21:08 +0000)
llvm-svn: 174662

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

index ad3baae..8a38454 100644 (file)
@@ -830,7 +830,8 @@ bool TokenAnnotator::spaceRequiredBetween(const AnnotatedLine &Line,
   if (Left.is(tok::coloncolon))
     return false;
   if (Right.is(tok::coloncolon))
-    return Left.isNot(tok::identifier) && Left.isNot(tok::greater);
+    return Left.isNot(tok::identifier) && Left.isNot(tok::greater) &&
+           Left.isNot(tok::l_paren);
   if (Left.is(tok::less) || Right.is(tok::greater) || Right.is(tok::less))
     return false;
   if (Right.is(tok::amp) || Right.is(tok::star))
index 6924e45..8ea0ff1 100644 (file)
@@ -147,8 +147,9 @@ TEST_F(FormatTest, FormatsNestedCall) {
   verifyFormat("Method(f1(f2, (f3())));");
 }
 
-TEST_F(FormatTest, ImportantSpaces) {
+TEST_F(FormatTest, NestedNameSpecifiers) {
   verifyFormat("vector< ::Type> v;");
+  verifyFormat("::ns::SomeFunction(::ns::SomeOtherFunction())");
 }
 
 TEST_F(FormatTest, OnlyGeneratesNecessaryReplacements) {