Add missing return statements

This commit is contained in:
Tim Moore
2009-07-18 10:12:59 +02:00
parent 828d561113
commit 4943d3aa53
2 changed files with 2 additions and 0 deletions

View File

@@ -861,6 +861,7 @@ bool Effect::realizeTechniques(const osgDB::ReaderWriter::Options* options)
itr != e;
++itr)
buildTechnique(this, *itr, options);
return true;
}
bool Effect_writeLocalData(const Object& obj, osgDB::Output& fw)

View File

@@ -107,6 +107,7 @@ protected:
ContextInfo& operator=(const ContextInfo& rhs)
{
valid = rhs.valid;
return *this;
}
Swappable<Status> valid;
};