2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-21 05:02:17 +00:00

Missing "std::" added (std::size_t)

[SVN r10872]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2001-08-15 19:15:57 +00:00
parent 9f3cda0ac3
commit 6e6ae18aab

View File

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