We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9422441 commit b696df0Copy full SHA for b696df0
src/ifcparse/IfcSpfHeader.cpp
@@ -113,9 +113,9 @@ bool IfcSpfHeader::tryRead() {
113
void IfcSpfHeader::write(std::ostream& os) const {
114
os << ISO_10303_21 << ";" << "\n";
115
os << HEADER << ";" << "\n";
116
- os << file_description().toString(true) << "\n";
117
- os << file_name().toString(true) << "\n";
118
- os << file_schema().toString(true) << "\n";
+ os << file_description().toString(true) << ";" << "\n";
+ os << file_name().toString(true) << ";" << "\n";
+ os << file_schema().toString(true) << ";" << "\n";
119
os << ENDSEC << ";" << "\n";
120
os << DATA << ";" << "\n";
121
}
0 commit comments