From 6b6407d9ab1fc7198728b74ed05e23bce0b964fe Mon Sep 17 00:00:00 2001 From: Richard Brice <37087370+RickBrice@users.noreply.github.com> Date: Tue, 25 Aug 2026 15:28:27 -0700 Subject: [PATCH] module is a C++ 20 keyword. Explicitly stating namespace allows cpp20 projects to build against the library --- src/plugin/plugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/plugin.h b/src/plugin/plugin.h index 10e99211ec..edf91e879d 100644 --- a/src/plugin/plugin.h +++ b/src/plugin/plugin.h @@ -96,7 +96,7 @@ public: std::vector discover(const std::string& basename_prefix) const; std::vector discover_exact(const std::string& basename) const; - module load(const std::filesystem::path& path) const; + ifcopenshell::plugin::module load(const std::filesystem::path& path) const; private: std::vector search_paths_;