From: Zhongxing Xu Date: Mon, 24 Nov 2008 07:38:01 +0000 (+0000) Subject: Fix 80-col violation. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=887058af514f7288cf8d49128459b9126d892206;p=clang Fix 80-col violation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59954 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/PathSensitive/GRStateTrait.h b/include/clang/Analysis/PathSensitive/GRStateTrait.h index 83ea2ca1e0..d99ca57e63 100644 --- a/include/clang/Analysis/PathSensitive/GRStateTrait.h +++ b/include/clang/Analysis/PathSensitive/GRStateTrait.h @@ -75,7 +75,8 @@ namespace clang { typedef typename data_type::Factory& context_type; static inline data_type MakeData(void* const* p) { - return p ? data_type((const llvm::ImmutableListImpl*) *p) : data_type(0); + return p ? data_type((const llvm::ImmutableListImpl*) *p) + : data_type(0); } static inline void* MakeVoidPtr(data_type D) {