Fix constructor arguments names

This commit is contained in:
johltn
2021-02-19 17:03:41 +01:00
parent 9816e96a34
commit 40266e7bf2
3 changed files with 6 additions and 16 deletions
+1 -1
View File
@@ -807,7 +807,7 @@ int main(int argc, char** argv) {
else if (output_extension == HDF) {
const path_t mtl_filename = change_extension(output_filename, MTL);
settings.set(IfcGeom::IteratorSettings::DISABLE_TRIANGULATION, true);
serializer = boost::make_shared<HdfSerializer>(IfcUtil::path::to_utf8(output_temp_filename), IfcUtil::path::to_utf8(output_filename), settings);
serializer = boost::make_shared<HdfSerializer>(IfcUtil::path::to_utf8(output_temp_filename), settings);
}
else {