Some changes to make sure builds go through on 64-bit.

This commit is contained in:
ThePhD 2013-12-11 06:10:30 -05:00
parent 9e47ec6b06
commit fc19896815

View File

@ -42,11 +42,11 @@ private:
}
void call(types<void>, std::size_t n) {
lua_pcall(state(), n, 0, 0);
lua_pcall(state(), static_cast<uint32_t>(n), 0, 0);
}
void call(types<>, std::size_t n) {
lua_pcall(state(), n, 0, 0);
lua_pcall(state(), static_cast<uint32_t>(n), 0, 0);
}
public: