Skip to content
Snippets Groups Projects
Commit 9078416a authored by Bastien Gorissen's avatar Bastien Gorissen
Browse files

Fix compile without lua

parent 1f58a048
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,9 @@ class classBinding { ...@@ -13,6 +13,9 @@ 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, typename t5>
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,
typename t4> typename t4>
methodBinding *setConstructor(){ return 0; } methodBinding *setConstructor(){ return 0; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment