Skip to content

Commit

Permalink
xrGame: fix linkage ge_function by @Zegeri
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Oct 3, 2018
1 parent 758808e commit 98372be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/xrGame/state_arguments_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ namespace award_system
{
// definitions of static members of functions_cf
template<>
ge_function<float> functions_cf<float>::ge_function;
ge_function<float> functions_cf<float>::ge_function {};
template<>
le_function<float> functions_cf<float>::le_function;
le_function<float> functions_cf<float>::le_function {};

template<>
ge_function<u32> functions_cf<u32>::ge_function;
ge_function<u32> functions_cf<u32>::ge_function {};
template<>
le_function<u32> functions_cf<u32>::le_function;
le_function<u32> functions_cf<u32>::le_function {};

} // namespace award_system
5 changes: 0 additions & 5 deletions src/xrGame/state_arguments_functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ class functions_cf
static ge_function<T> ge_function;
static le_function<T> le_function;
};
// definitions of static members of functions_cf
template<typename T>
ge_function<T> functions_cf<T>::ge_function;
template<typename T>
le_function<T> functions_cf<T>::le_function;

typedef binary_function<float> float_binary_function;
typedef functions_cf<float> float_bfunc_cf;
Expand Down

0 comments on commit 98372be

Please sign in to comment.