2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

Spell things consistently. Add some bits of Mac stuff to the tests.

Use std::size_t where needed.


[SVN r10800]
This commit is contained in:
Darin Adler
2001-08-07 17:22:02 +00:00
parent f646975c36
commit 9f3cda0ac3

View File

@@ -9,7 +9,7 @@ namespace vects {
struct dvect : public std::vector<double>
{
dvect() : std::vector<double>() {}
dvect(size_t n) : std::vector<double>(n) {}
dvect(std::size_t n) : std::vector<double>(n) {}
dvect(boost::python::tuple tuple) : std::vector<double>(tuple.size())
{
std::vector<double>::iterator v_it = begin();