]> granicus.if.org Git - clang/commit
Fix indentation problem for comments in call chains
authorDaniel Jasper <djasper@google.com>
Thu, 11 Jul 2013 13:48:16 +0000 (13:48 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 11 Jul 2013 13:48:16 +0000 (13:48 +0000)
commite1f9a8e27f553dcb359dfd96a3fe3065de7c4dad
tree56fe0efbd732a8741bdff8673e722061b1a02e56
parentc18cff311118fc6a30929468fc82b2b35cbd7fbf
Fix indentation problem for comments in call chains

Before:
SomeObject
    // Calling someFunction on SomeObject
        .someFunction();

After:
SomeObject
    // Calling someFunction on SomeObject
    .someFunction();

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186085 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/Format.cpp
unittests/Format/FormatTest.cpp