]> granicus.if.org Git - clang/commit
Fixed one issue with casting
authorDinesh Dwivedi <dinesh.d@samsung.com>
Tue, 6 May 2014 11:46:49 +0000 (11:46 +0000)
committerDinesh Dwivedi <dinesh.d@samsung.com>
Tue, 6 May 2014 11:46:49 +0000 (11:46 +0000)
commit7cd95fe25455904da18f2f396b3a7fd75c3eac88
treed2d938c433e06179b1a5ea77275a6679357b085c
parent18414560e68c02039c2574d86c2f884a33b04de8
Fixed one issue with casting

Before:
(void) SimplifyICmpOperands(Cond, LHS, RHS);

After:
(void)SimplifyICmpOperands(Cond, LHS, RHS);

Differential Revision: http://reviews.llvm.org/D3615

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