clang-format: Understand that "auto" is a type.
authorDaniel Jasper <djasper@google.com>
Thu, 3 Apr 2014 09:00:49 +0000 (09:00 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 3 Apr 2014 09:00:49 +0000 (09:00 +0000)
commitcc7bf7fda1303f2b9bbbaf1f5d79a885af25ff97
tree14027ad0bccf3795862a6a3c1b761d0432f331db
parent92e0fc0484440984358b048b8f05177509ce629a
clang-format: Understand that "auto" is a type.

Before:
  MACRO(auto * a);

After:
  MACRO(auto *a);

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