Skip to content

Commit 758808e

Browse files
committed
xrGame: fix linux linkage of le_function
1 parent f26a002 commit 758808e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/xrGame/state_arguments_functions.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ 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;
5863

5964
typedef binary_function<float> float_binary_function;
6065
typedef functions_cf<float> float_bfunc_cf;

0 commit comments

Comments
 (0)