From d9bacc5a84ca938fd57e57a7b68765bb0f251430 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Tue, 17 Sep 2002 01:17:57 +0000 Subject: [PATCH] Remove specification of argument default from cpp file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3772 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Function.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index fb940bf804a..d7e8bea9ddc 100644 --- a/lib/VMCore/Function.cpp +++ b/lib/VMCore/Function.cpp @@ -42,7 +42,7 @@ template SymbolTableListTraits; // Argument Implementation //===----------------------------------------------------------------------===// -Argument::Argument(const Type *Ty, const std::string &Name = "", Function *Par) +Argument::Argument(const Type *Ty, const std::string &Name, Function *Par) : Value(Ty, Value::ArgumentVal, Name) { Parent = 0;