Enable 64 bit static build and fix linker error

This commit is contained in:
Twan van Laarhoven
2020-05-11 01:54:21 +02:00
parent 9562103f7e
commit b57d9b7615
3 changed files with 16 additions and 0 deletions
+1
View File
@@ -20,6 +20,7 @@ using boost::tribool;
template <> void GetDefaultMember::handle(const String& v) { value = to_script(v); }
template <> void GetDefaultMember::handle(const int& v) { value = to_script(v); }
template <> void GetDefaultMember::handle(const unsigned int& v) { value = to_script((int)v); }
template <> void GetDefaultMember::handle(const uint64_t& v) { value = to_script((int)v); }
template <> void GetDefaultMember::handle(const double& v) { value = to_script(v); }
template <> void GetDefaultMember::handle(const bool& v) { value = to_script(v); }
template <> void GetDefaultMember::handle(const tribool& v) { value = to_script((bool)v); }