ifcparse: fix clang-tidy warning readability-identifier-length

This commit is contained in:
Dirk Olbrich
2023-11-06 20:29:00 +01:00
committed by Thomas Krijnen
parent eea9a14722
commit 47a2971c65
25 changed files with 651 additions and 625 deletions
+15 -15
View File
@@ -113,21 +113,21 @@ 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 << ENDSEC << ";"
<< "\n";
os << DATA << ";"
<< "\n";
void IfcSpfHeader::write(std::ostream& out) const {
out << ISO_10303_21 << ";"
<< "\n";
out << HEADER << ";"
<< "\n";
out << file_description().toString(true) << ";"
<< "\n";
out << file_name().toString(true) << ";"
<< "\n";
out << file_schema().toString(true) << ";"
<< "\n";
out << ENDSEC << ";"
<< "\n";
out << DATA << ";"
<< "\n";
}
const FileDescription& IfcSpfHeader::file_description() const {