diff options
Diffstat (limited to 'src/core/module/Module.cpp')
-rw-r--r-- | src/core/module/Module.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/module/Module.cpp b/src/core/module/Module.cpp index cab72a9a..c37b2262 100644 --- a/src/core/module/Module.cpp +++ b/src/core/module/Module.cpp @@ -40,7 +40,8 @@ class Module::Impl { Impl(ModuleRawPtr m_ptr, ModuleIdentifier id, ModuleVersion version, ModuleMetaData meta_data) - : m_ptr_(m_ptr), + : gpc_(nullptr), + m_ptr_(m_ptr), identifier_(std::move(id)), version_(std::move(version)), meta_data_(std::move(meta_data)) {} |