Changed default value of 3rd parameter in function definition

llvm-svn: 3492
This commit is contained in:
Anand Shukla 2002-08-23 10:55:49 +00:00
parent 656de9732b
commit e2a8fb2f79

View File

@ -146,7 +146,7 @@ string CWriter::getValueName(const Value *V) {
// declaration.
//
ostream &CWriter::printType(const Type *Ty, const string &NameSoFar,
bool IgnoreName = false) {
bool IgnoreName) {
if (Ty->isPrimitiveType())
switch (Ty->getPrimitiveID()) {
case Type::VoidTyID: return Out << "void " << NameSoFar;