Drop C4AulParSet defaulted ctor

Having the ctor defaulted confuses MSVC 2015 and makes it not use the
templated ctor below even for calls with a parameter list,
thus skipping required initialization.
install-platforms
Nicolas Hake 2017-07-18 02:24:04 +02:00
parent f5f8b18204
commit e5b15a494c
1 changed files with 0 additions and 1 deletions

View File

@ -29,7 +29,6 @@ struct C4AulParSet
{
C4Value Par[C4AUL_MAX_Par];
C4AulParSet() = default; // standard-constructor
template<class ...T> explicit C4AulParSet(T&& ...pars):
Par {C4Value(std::forward<T>(pars))...}
{