File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ using boost::tribool;
2020template <> void GetDefaultMember::handle (const String& v) { value = to_script (v); }
2121template <> void GetDefaultMember::handle (const int & v) { value = to_script (v); }
2222template <> void GetDefaultMember::handle (const unsigned int & v) { value = to_script ((int )v); }
23- template <> void GetDefaultMember::handle (const size_t & v) { value = to_script ((int )v); }
23+ template <> void GetDefaultMember::handle (const uint64_t & v) { value = to_script ((int )v); }
2424template <> void GetDefaultMember::handle (const double & v) { value = to_script (v); }
2525template <> void GetDefaultMember::handle (const bool & v) { value = to_script (v); }
2626template <> void GetDefaultMember::handle (const tribool& v) { value = to_script ((bool )v); }
You can’t perform that action at this time.
0 commit comments