Build fix for VS6.0 in the template constructors

This commit is contained in:
Robert Osfield
2005-12-09 14:52:19 +00:00
parent a8d7234a0b
commit 479af6e825
2 changed files with 5 additions and 5 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(VectorUInt::size_type n): vector_type(n) {}
explicit VectorUInt(vector_type::size_type n): vector_type(n) {}
};
// **************************************************************************