diff --git a/src/xrGame/state_arguments_functions.cpp b/src/xrGame/state_arguments_functions.cpp index 04601171681..6b0e0f93e76 100644 --- a/src/xrGame/state_arguments_functions.cpp +++ b/src/xrGame/state_arguments_functions.cpp @@ -5,13 +5,13 @@ namespace award_system { // definitions of static members of functions_cf template<> -ge_function functions_cf::ge_function; +ge_function functions_cf::ge_function {}; template<> -le_function functions_cf::le_function; +le_function functions_cf::le_function {}; template<> -ge_function functions_cf::ge_function; +ge_function functions_cf::ge_function {}; template<> -le_function functions_cf::le_function; +le_function functions_cf::le_function {}; } // namespace award_system diff --git a/src/xrGame/state_arguments_functions.h b/src/xrGame/state_arguments_functions.h index e8f8549c9db..67d05b8f799 100644 --- a/src/xrGame/state_arguments_functions.h +++ b/src/xrGame/state_arguments_functions.h @@ -55,11 +55,6 @@ class functions_cf static ge_function ge_function; static le_function le_function; }; -// definitions of static members of functions_cf -template -ge_function functions_cf::ge_function; -template -le_function functions_cf::le_function; typedef binary_function float_binary_function; typedef functions_cf float_bfunc_cf;