From 9f3cda0ac35cc752ab6928d8f7c8f7f1101eeef5 Mon Sep 17 00:00:00 2001 From: Darin Adler Date: Tue, 7 Aug 2001 17:22:02 +0000 Subject: [PATCH] Spell things consistently. Add some bits of Mac stuff to the tests. Use std::size_t where needed. [SVN r10800] --- example/dvect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/dvect.h b/example/dvect.h index 8ffe7b50..d059f04d 100644 --- a/example/dvect.h +++ b/example/dvect.h @@ -9,7 +9,7 @@ namespace vects { struct dvect : public std::vector { dvect() : std::vector() {} - dvect(size_t n) : std::vector(n) {} + dvect(std::size_t n) : std::vector(n) {} dvect(boost::python::tuple tuple) : std::vector(tuple.size()) { std::vector::iterator v_it = begin();