From 6e6ae18aabefe93b2a8561effaa54877f5da983e Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Wed, 15 Aug 2001 19:15:57 +0000 Subject: [PATCH] Missing "std::" added (std::size_t) [SVN r10872] --- example/ivect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();