minor fixes, and converted the type table

This commit is contained in:
Thomas "elfprince13" Dickerson 2017-01-06 16:36:25 -05:00
parent 1eeec6a1f7
commit 1eb0134a1f
3 changed files with 28 additions and 382 deletions

View file

@ -109,7 +109,7 @@ public:
// Helper functions to fill in the command arguments
template<typename ...ArgTs> inline void addArgs(ArgTs ...args){
using Helper = engineAPI::detail::MarshallHelpers;
using Helper = engineAPI::detail::MarshallHelpers<String>;
Helper::marshallEach(argc, argv, args...);
}
};