Fix compilation

This commit is contained in:
Jérôme Leclercq 2020-09-17 20:25:15 +02:00
parent 37418d482e
commit 3f6f18859c
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ namespace Nz
template<typename Module>
template<typename... ModuleConfig>
ModuleTuple<Module>::ModuleTuple(ModuleConfig&&... configs) :
m(Pick<Module::Config>::Get(std::forward<ModuleConfig>(configs)...))
m(Pick<typename Module::Config>::Get(std::forward<ModuleConfig>(configs)...))
{
}