]> granicus.if.org Git - clang/commit
clang-format: In Java, `assert` is followed by an expression.
authorNico Weber <nicolasweber@gmx.de>
Tue, 15 Sep 2015 23:48:17 +0000 (23:48 +0000)
committerNico Weber <nicolasweber@gmx.de>
Tue, 15 Sep 2015 23:48:17 +0000 (23:48 +0000)
commit90992a9c9fb002201de6cdb2a9a4720b70d5fee6
treee8723576e71c3fd8ffb8a7302079585784eeece4
parent59e3ceb1fb436b2c0cd6a28d24b8565e004f82e8
clang-format: In Java, `assert` is followed by an expression.

Before: assert a&& b;
Now:    assert a && b;

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