clang-format: Fix space in direct destructor calls.
authorDaniel Jasper <djasper@google.com>
Tue, 21 Oct 2014 07:51:54 +0000 (07:51 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 21 Oct 2014 07:51:54 +0000 (07:51 +0000)
commit38efc13191c5b46c45b52e8b69b53b6e40b64cc2
treeb0dc5319938a8f108181d97bea17be27211e963d
parentdadf408680a81d5a4c599fb17b072614a20cef89
clang-format: Fix space in direct destructor calls.

Before:
  void F(int& i) { i. ~int(); }

After:
  void F(int& i) { i.~int(); }

Also, some cleanups.

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