Configurable pointer type; std::from_chars(); aggregate inverses in vector; skip parse_context

This commit is contained in:
Thomas Krijnen
2026-06-11 15:51:40 +02:00
parent c8d39cc481
commit 4c13e2424c
11 changed files with 860 additions and 624 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
}