mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 06:58:56 +00:00
Missing semicolons in header
This commit is contained in:
@@ -113,9 +113,9 @@ bool IfcSpfHeader::tryRead() {
|
|||||||
void IfcSpfHeader::write(std::ostream& os) const {
|
void IfcSpfHeader::write(std::ostream& os) const {
|
||||||
os << ISO_10303_21 << ";" << "\n";
|
os << ISO_10303_21 << ";" << "\n";
|
||||||
os << HEADER << ";" << "\n";
|
os << HEADER << ";" << "\n";
|
||||||
os << file_description().toString(true) << "\n";
|
os << file_description().toString(true) << ";" << "\n";
|
||||||
os << file_name().toString(true) << "\n";
|
os << file_name().toString(true) << ";" << "\n";
|
||||||
os << file_schema().toString(true) << "\n";
|
os << file_schema().toString(true) << ";" << "\n";
|
||||||
os << ENDSEC << ";" << "\n";
|
os << ENDSEC << ";" << "\n";
|
||||||
os << DATA << ";" << "\n";
|
os << DATA << ";" << "\n";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user