mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 06:58:56 +00:00
Fix omitted return statement in previous commit
This commit is contained in:
@@ -328,7 +328,7 @@ IfcUtil::ArgumentType IfcWriteArgument::type() const {
|
|||||||
if (ty < 0) {
|
if (ty < 0) {
|
||||||
return IfcUtil::Argument_UNKNOWN;
|
return IfcUtil::Argument_UNKNOWN;
|
||||||
} else {
|
} else {
|
||||||
static_cast<IfcUtil::ArgumentType>(ty);
|
return static_cast<IfcUtil::ArgumentType>(ty);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user