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
5
5
{
6
6
// definitions of static members of functions_cf
7
7
template <>
8
- ge_function<float > functions_cf<float >::ge_function;
8
+ ge_function<float > functions_cf<float >::ge_function {} ;
9
9
template <>
10
- le_function<float > functions_cf<float >::le_function;
10
+ le_function<float > functions_cf<float >::le_function {} ;
11
11
12
12
template <>
13
- ge_function<u32 > functions_cf<u32 >::ge_function;
13
+ ge_function<u32 > functions_cf<u32 >::ge_function {} ;
14
14
template <>
15
- le_function<u32 > functions_cf<u32 >::le_function;
15
+ le_function<u32 > functions_cf<u32 >::le_function {} ;
16
16
17
17
} // namespace award_system
Original file line number Diff line number Diff line change @@ -55,11 +55,6 @@ class functions_cf
55
55
static ge_function<T> ge_function;
56
56
static le_function<T> le_function;
57
57
};
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;
63
58
64
59
typedef binary_function<float > float_binary_function;
65
60
typedef functions_cf<float > float_bfunc_cf;
You can’t perform that action at this time.
0 commit comments