diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-11-24 07:38:01 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2008-11-24 07:38:01 +0000 |
commit | 887058af514f7288cf8d49128459b9126d892206 (patch) | |
tree | be06f6bfbac141dbc8ed65f76d8d9d6d06d74848 | |
parent | 1ed8d4ba8e244ed2177471028335a04f838283af (diff) |
Fix 80-col violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59954 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/GRStateTrait.h | 3 |
1 files changed, 2 insertions, 1 deletions
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<T>*) *p) : data_type(0); + return p ? data_type((const llvm::ImmutableListImpl<T>*) *p) + : data_type(0); } static inline void* MakeVoidPtr(data_type D) { |