freebsd-ports/graphics/nurbs++/files/patch-vector.h

12 lines
406 B
C
Raw Normal View History

--- matrix/vector.h.orig Mon May 13 14:07:45 2002
+++ matrix/vector.h Thu Nov 30 23:29:02 2006
@@ -69,7 +69,7 @@
{
public:
int rows() const //!< a reference to the size of the vector
- { return sze ;}
+ { return this->sze ;}
Vector() : BasicArray<T>(1) {} //!< Basic constructor
Vector(const int r) : BasicArray<T>(r) {}
Vector(const Vector<T>& v) : BasicArray<T>(v) {}