File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ namespace award_system
55{
66// definitions of static members of functions_cf
77template <>
8- ge_function<float > functions_cf<float >::ge_function;
8+ ge_function<float > functions_cf<float >::ge_function {} ;
99template <>
10- le_function<float > functions_cf<float >::le_function;
10+ le_function<float > functions_cf<float >::le_function {} ;
1111
1212template <>
13- ge_function<u32 > functions_cf<u32 >::ge_function;
13+ ge_function<u32 > functions_cf<u32 >::ge_function {} ;
1414template <>
15- le_function<u32 > functions_cf<u32 >::le_function;
15+ le_function<u32 > functions_cf<u32 >::le_function {} ;
1616
1717} // namespace award_system
Original file line number Diff line number Diff line change @@ -55,11 +55,6 @@ class functions_cf
5555 static ge_function<T> ge_function;
5656 static le_function<T> le_function;
5757};
58- // definitions of static members of functions_cf
59- template <typename T>
60- ge_function<T> functions_cf<T>::ge_function;
61- template <typename T>
62- le_function<T> functions_cf<T>::le_function;
6358
6459typedef binary_function<float > float_binary_function;
6560typedef functions_cf<float > float_bfunc_cf;
You can’t perform that action at this time.
0 commit comments