Skip to content

Commit

Permalink
xrGame: fix linux linkage of le_function
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Oct 3, 2018
1 parent f26a002 commit 758808e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/xrGame/state_arguments_functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ 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 758808e

Please sign in to comment.