diff --git a/src/command_type.h b/src/command_type.h index e8db1ed7f4..9a122dede0 100644 --- a/src/command_type.h +++ b/src/command_type.h @@ -409,12 +409,14 @@ template struct CommandFunctionTraitHelper; template struct CommandFunctionTraitHelper { using Args = std::tuple...>; + using RetTypes = void; using CbArgs = Args; using CbProcType = void(*)(Commands, const CommandCost &); }; template