diff options
Diffstat (limited to 'include/llvm/Constant.h')
-rw-r--r-- | include/llvm/Constant.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Constant.h b/include/llvm/Constant.h index feb7ede..985f190 100644 --- a/include/llvm/Constant.h +++ b/include/llvm/Constant.h @@ -39,9 +39,8 @@ class Constant : public User { void operator=(const Constant &); // Do not implement Constant(const Constant &); // Do not implement protected: - Constant(const Type *Ty, ValueTy vty, Use *Ops, unsigned NumOps, - const std::string& Name = "") - : User(Ty, vty, Ops, NumOps, Name) {} + Constant(const Type *Ty, ValueTy vty, Use *Ops, unsigned NumOps) + : User(Ty, vty, Ops, NumOps) {} void destroyConstantImpl(); public: |