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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user