Skip to content

Commit 6e6ae18

Browse files
author
Ralf W. Grosse-Kunstleve
committed
Missing "std::" added (std::size_t)
[SVN r10872]
1 parent 9f3cda0 commit 6e6ae18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

example/ivect.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace vects {
99
struct ivect : public std::vector<int>
1010
{
1111
ivect() : std::vector<int>() {}
12-
ivect(size_t n) : std::vector<int>(n) {}
12+
ivect(std::size_t n) : std::vector<int>(n) {}
1313
ivect(boost::python::tuple tuple) : std::vector<int>(tuple.size())
1414
{
1515
std::vector<int>::iterator v_it = begin();

0 commit comments

Comments
 (0)