Merge branch 'datamodel-v1.0' into ifcviewer-wgpu

This commit is contained in:
Thomas Krijnen
2026-07-03 10:30:16 +02:00
committed by GitHub
252 changed files with 35575 additions and 3562 deletions
+4
View File
@@ -54,10 +54,14 @@ namespace {
}
void plugin_debug(const std::string& message) {
#ifdef IFOPSH_PLUGIN_DEBUG
#if defined(_MSC_VER) && defined(_UNICODE)
std::wcerr << "[ifcopenshell.plugin] " << message.c_str() << std::endl;
#else
std::cerr << "[ifcopenshell.plugin] " << message << std::endl;
#endif
#else
static_cast<void>(message);
#endif
}