Skip to content

Commit b696df0

Browse files
committed
Missing semicolons in header
1 parent 9422441 commit b696df0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ifcparse/IfcSpfHeader.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ bool IfcSpfHeader::tryRead() {
113113
void IfcSpfHeader::write(std::ostream& os) const {
114114
os << ISO_10303_21 << ";" << "\n";
115115
os << HEADER << ";" << "\n";
116-
os << file_description().toString(true) << "\n";
117-
os << file_name().toString(true) << "\n";
118-
os << file_schema().toString(true) << "\n";
116+
os << file_description().toString(true) << ";" << "\n";
117+
os << file_name().toString(true) << ";" << "\n";
118+
os << file_schema().toString(true) << ";" << "\n";
119119
os << ENDSEC << ";" << "\n";
120120
os << DATA << ";" << "\n";
121121
}

0 commit comments

Comments
 (0)