Add explicit cast to attribute value

This commit is contained in:
Thomas Krijnen
2018-09-04 13:59:57 +02:00
parent 4d33ed5cb8
commit bdf22856e4
+1 -1
View File
@@ -437,7 +437,7 @@ std::string ColladaSerializer::differentiateSlabTypes(const IfcUtil::IfcBaseEnti
if (otype->isNull()) {
result = "_Unknown";
} else {
result = *otype;
result = (std::string) *otype;
}
}