Fix omitted return statement in previous commit

This commit is contained in:
Thomas Krijnen
2014-11-17 15:32:00 +00:00
parent 24044fb92a
commit 7f8d84a1af
+1 -1
View File
@@ -328,7 +328,7 @@ IfcUtil::ArgumentType IfcWriteArgument::type() const {
if (ty < 0) {
return IfcUtil::Argument_UNKNOWN;
} else {
static_cast<IfcUtil::ArgumentType>(ty);
return static_cast<IfcUtil::ArgumentType>(ty);
}
}