Skip to content
Snippets Groups Projects
Commit cdf976e0 authored by Bruno Seny's avatar Bruno Seny
Browse files

fixe compiling error if not using lua

parent 3488f4a1
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,8 @@ class classBinding { ...@@ -8,6 +8,8 @@ class classBinding {
void setParentClass(){} void setParentClass(){}
template <typename cb> template <typename cb>
methodBinding *addMethod(std::string n, cb f){ return new methodBinding(); } methodBinding *addMethod(std::string n, cb f){ return new methodBinding(); }
template <typename tObj, typename t0, typename t1, typename t2, typename t3, typename t4>
methodBinding *setConstructor(){ return 0; }
template <typename tObj, typename t0, typename t1, typename t2, typename t3> template <typename tObj, typename t0, typename t1, typename t2, typename t3>
methodBinding *setConstructor(){ return 0; } methodBinding *setConstructor(){ return 0; }
template <typename tObj, typename t0, typename t1, typename t2> template <typename tObj, typename t0, typename t1, typename t2>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment