Python: fixed minor error in kernels.cpp

This commit is contained in:
Philippe Tillet
2015-08-27 20:26:30 -04:00
parent c3c5b48b24
commit de159ca829

View File

@@ -15,7 +15,7 @@ namespace detail
{
bp::list input_sizes(tpt::base & temp, sc::expressions_tuple const & tree)
{
std::vector<int> tmp = temp.input_sizes(tree);
std::vector<isaac::int_t> tmp = temp.input_sizes(tree);
return tools::to_list(tmp.begin(), tmp.end());
}
}