clang-format: Add space in corner case.
authorDaniel Jasper <djasper@google.com>
Wed, 17 Jul 2013 20:25:02 +0000 (20:25 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 17 Jul 2013 20:25:02 +0000 (20:25 +0000)
commitee6d650f91c06df9f5a4a7be2898317044b3c4c1
treee2fbcd0326be8b12dbad7f1e3bffcdf4b9eebdcc
parentdeb05067907c2dc2d49794b190a4fe2e052e67c8
clang-format: Add space in corner case.

Before:
  SomeType s __attribute__((unused))(InitValue);
After:
  SomeType s __attribute__((unused)) (InitValue);

llvm-svn: 186535
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTest.cpp