Wrap more classes into ifcopenshell:: namespace

This commit is contained in:
Thomas Krijnen
2026-08-08 13:58:39 +02:00
parent 2c47c9d4fa
commit 02481b3247
149 changed files with 678 additions and 627 deletions
+2 -2
View File
@@ -111,7 +111,7 @@ ifcopenshell::global_id::global_id(logger& logger) {
boost::uuids::uuid test_uuid;
std::copy(test_vector.begin(), test_vector.end(), test_uuid.begin());
if (uuid_data_ != test_uuid) {
logger.message(::logger::LOG_ERROR, "SYS", 34, "Internal error generating GlobalId");
logger.message(ifcopenshell::logger::LOG_ERROR, "SYS", 34, "Internal error generating GlobalId");
}
#endif
}
@@ -130,7 +130,7 @@ ifcopenshell::global_id::global_id(const std::string& string, logger& logger)
#ifndef NDEBUG
const std::string test_string = compress(&uuid_data_.data[0]);
if (string_data_ != test_string) {
logger.message(::logger::LOG_ERROR, "SYS", 35, "Internal error generating GlobalId");
logger.message(ifcopenshell::logger::LOG_ERROR, "SYS", 35, "Internal error generating GlobalId");
}
#endif
}