Missing semicolons in header

This commit is contained in:
Thomas Krijnen
2017-08-02 16:07:30 +02:00
parent 94224411a9
commit b696df0da1
+3 -3
View File
@@ -113,9 +113,9 @@ bool IfcSpfHeader::tryRead() {
void IfcSpfHeader::write(std::ostream& os) const {
os << ISO_10303_21 << ";" << "\n";
os << HEADER << ";" << "\n";
os << file_description().toString(true) << "\n";
os << file_name().toString(true) << "\n";
os << file_schema().toString(true) << "\n";
os << file_description().toString(true) << ";" << "\n";
os << file_name().toString(true) << ";" << "\n";
os << file_schema().toString(true) << ";" << "\n";
os << ENDSEC << ";" << "\n";
os << DATA << ";" << "\n";
}