Amend 1caef183 (Windows Lua bindings)

This commit is contained in:
Robin Gareus 2019-12-03 03:29:35 +01:00
parent d3ca91a0b4
commit bfcadff73c
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 5 additions and 0 deletions

View File

@ -89,6 +89,11 @@ luabridge::ClassInfo<T>::getConstKey ()
return &value;
}
#define CLASSKEYS(CLS) \
template void const* luabridge::ClassInfo< CLS >::getStaticKey(); \
template void const* luabridge::ClassInfo< CLS >::getClassKey(); \
template void const* luabridge::ClassInfo< CLS >::getConstKey();
CLASSKEYS(std::vector<double>);
#endif