diff options
author | saturneric <[email protected]> | 2024-01-17 16:14:13 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-17 16:14:13 +0000 |
commit | 37848811b6c8ca6c2a707431ec077c8098918afe (patch) | |
tree | 2ed4e5759ca6c432171963068beca61a164e98d2 /src/core/module | |
parent | feat: update ci files and reduce dependencies (diff) | |
download | GpgFrontend-37848811b6c8ca6c2a707431ec077c8098918afe.tar.gz GpgFrontend-37848811b6c8ca6c2a707431ec077c8098918afe.zip |
fix: improve code quality, docs and ci files
Diffstat (limited to 'src/core/module')
-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)) {} |