clang-format: Fix incorrect && recognition.
authorDaniel Jasper <djasper@google.com>
Wed, 11 Mar 2015 12:59:49 +0000 (12:59 +0000)
committerDaniel Jasper <djasper@google.com>
Wed, 11 Mar 2015 12:59:49 +0000 (12:59 +0000)
commitdc4f7256733de3c7331dd7f0f7eca2a0ace1202d
tree56baec6264b95d8e3bacc33d087a643d318a57e1
parent9eb4ddc54c9762a52df8564b4d70edb24b78914f
clang-format: Fix incorrect && recognition.

Before:
  if (a &&(b = c)) ..

After:
  if (a && (b = c)) ..

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