Fix x64 compilation error in usertype tests

This commit is contained in:
Orfeas Zafeiris 2018-05-30 08:57:44 +03:00
parent ac709111e8
commit f4f166f88c

View File

@ -304,7 +304,7 @@ struct matrix_xi {
};
template <typename SelfType>
struct alignas(16) weird_aligned_wrapper {
void operator()(SelfType& self, sol::object param) const {
void operator()(SelfType&, sol::object param) const {
}
std::function<void(SelfType&, float)> lambda;
};