diff options
author | saturneric <[email protected]> | 2024-01-08 09:26:41 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-08 09:26:41 +0000 |
commit | 5222a2fd1ba372f6eb67dc8fa71e334f1ff10bbb (patch) | |
tree | 7a868b8f56986083d5e0aa4c64cb74c34cdbf73f /src/module/GpgFrontendModuleInit.cpp | |
parent | feat: remove save keys checked function (diff) | |
download | GpgFrontend-5222a2fd1ba372f6eb67dc8fa71e334f1ff10bbb.tar.gz GpgFrontend-5222a2fd1ba372f6eb67dc8fa71e334f1ff10bbb.zip |
fix: solve compile issue
Diffstat (limited to '')
-rw-r--r-- | src/module/GpgFrontendModuleInit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/module/GpgFrontendModuleInit.cpp b/src/module/GpgFrontendModuleInit.cpp index b2d29c71..6f88b9ec 100644 --- a/src/module/GpgFrontendModuleInit.cpp +++ b/src/module/GpgFrontendModuleInit.cpp @@ -40,11 +40,11 @@ namespace GpgFrontend::Module { -void LoadGpgFrontendModules(ModuleInitArgs args) { +void LoadGpgFrontendModules(ModuleInitArgs) { // must init at default thread before core Thread::TaskRunnerGetter::GetInstance().GetTaskRunner()->PostTask( new Thread::Task( - [args](const DataObjectPtr&) -> int { + [](const DataObjectPtr&) -> int { MODULE_LOG_INFO("loading integrated module..."); // VersionCheckingModule |