Changed constructors to use unsigned int to get round VS6.0 + wrapper problems.
This commit is contained in:
@@ -34,7 +34,7 @@ public:
|
||||
VectorUInt(): vector_type() {}
|
||||
VectorUInt(const VectorUInt ©): 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) {}
|
||||
};
|
||||
|
||||
// **************************************************************************
|
||||
|
||||
Reference in New Issue
Block a user