aboutsummaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorGravatar Peter Powell2017-11-25 13:01:53 +0000
committerGravatar Peter Powell2017-11-25 13:38:02 +0000
commitfa95bb4b0d5aed9204d469a36946a9839a7ffaa2 (patch)
tree95ff9727251b1081c5348342b6fde619d346b8aa /src/modules.cpp
parentConvert GenRandom to std::function. (diff)
Convert the remaining things away from the caller/handler API.
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 9a3618264..65e0a53ca 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -440,7 +440,7 @@ void ModuleManager::UnloadAll()
namespace
{
- struct UnloadAction : public HandlerBase0<void>
+ struct UnloadAction : public ActionBase
{
Module* const mod;
UnloadAction(Module* m) : mod(m) {}