]> granicus.if.org Git - clang/commit
Keep trailing annotations close to their argument.
authorDaniel Jasper <djasper@google.com>
Thu, 11 Jul 2013 12:34:23 +0000 (12:34 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 11 Jul 2013 12:34:23 +0000 (12:34 +0000)
commitc18cff311118fc6a30929468fc82b2b35cbd7fbf
tree57b32ad578992e4e2dcb37e21585c112fe3b0557
parenta38253c3e7dbd2b5aadb0556845dc3848168b904
Keep trailing annotations close to their argument.

Before:
bool aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa GUARDED_BY(
    aaaaaaaaaaaa);

After:
bool aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
    GUARDED_BY(aaaaaaaaaaaa);

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