From db9546e3248024fe427db6becdd96053e9dd3452 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 14 Nov 2003 16:34:25 +0000 Subject: [PATCH] I can't believe the incompetence of the people I have to deal with around here. These fools don't even wrap code at 80 columns. Oh wait, _I_ wrote that. That explains a lot!! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9999 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Bytecode/Reader/ReaderInternals.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h index c75c6557648..53f699e6d08 100644 --- a/lib/Bytecode/Reader/ReaderInternals.h +++ b/lib/Bytecode/Reader/ReaderInternals.h @@ -202,7 +202,8 @@ public: }; struct ConstantPlaceHolderHelper : public ConstantExpr { - ConstantPlaceHolderHelper(const Type *Ty) : ConstantExpr(Instruction::UserOp1, Constant::getNullValue(Ty), Ty) {} + ConstantPlaceHolderHelper(const Type *Ty) + : ConstantExpr(Instruction::UserOp1, Constant::getNullValue(Ty), Ty) {} }; typedef PlaceholderDef ConstPHolder; -- 2.34.1