fixup: compiles, doesnt link

This commit is contained in:
Klaim (Joël Lamotte) 2025-07-09 14:46:25 +02:00 committed by Joël Lamotte (Klaim)
parent 84f43dbaec
commit 4ba1afd13b
1 changed files with 5 additions and 0 deletions

View File

@ -392,6 +392,11 @@ namespace mamba::logging
{
T object;
Wrapper(T new_object)
: object(std::move(new_object))
{
}
void start_log_handling(LoggingParams params, std::vector<log_source> sources) override
{
as_ref(object).start_log_handling(std::move(params), std::move(sources));