Added return type to addFileReference().

This commit is contained in:
Robert Osfield
2004-10-28 13:04:35 +00:00
parent 70e636bf15
commit 013c963a6b

View File

@@ -151,7 +151,12 @@ bool Archive::IndexBlock::addFileReference(pos_type position, const std::string&
_requiresWrite = true;
osg::notify(osg::NOTICE)<<"Archive::IndexBlock::addFileReference("<<(unsigned int)position<<", "<<filename<<")"<<std::endl;
return true;
}
else
{
return false;
}
}