diff --git a/example/ivect.h b/example/ivect.h index a0187307..b8d52246 100644 --- a/example/ivect.h +++ b/example/ivect.h @@ -9,7 +9,7 @@ namespace vects { struct ivect : public std::vector { ivect() : std::vector() {} - ivect(size_t n) : std::vector(n) {} + ivect(std::size_t n) : std::vector(n) {} ivect(boost::python::tuple tuple) : std::vector(tuple.size()) { std::vector::iterator v_it = begin();