Changed constructors to use unsigned int to get round VS6.0 + wrapper problems.

This commit is contained in:
Robert Osfield
2005-12-09 16:00:01 +00:00
parent c99b4b7b4d
commit 7d4acba022
4 changed files with 10 additions and 10 deletions

View File

@@ -34,7 +34,7 @@ public:
VectorUInt(): vector_type() {}
VectorUInt(const VectorUInt &copy): vector_type(copy) {}
VectorUInt(unsigned int* beg, unsigned int* end): vector_type(beg, end) {}
explicit VectorUInt(vector_type::size_type n): vector_type(n) {}
explicit VectorUInt(unsigned int n): vector_type(n) {}
};
// **************************************************************************