Skip to content

Commit 7f8d84a

Browse files
committed
Fix omitted return statement in previous commit
1 parent 24044fb commit 7f8d84a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ifcparse/IfcWrite.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ IfcUtil::ArgumentType IfcWriteArgument::type() const {
328328
if (ty < 0) {
329329
return IfcUtil::Argument_UNKNOWN;
330330
} else {
331-
static_cast<IfcUtil::ArgumentType>(ty);
331+
return static_cast<IfcUtil::ArgumentType>(ty);
332332
}
333333
}
334334

0 commit comments

Comments
 (0)