mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
95465b01db
PR: ports/106117 Submitted by: Peter Johnson <johnson.peter@gmail.com>
12 lines
406 B
C++
12 lines
406 B
C++
--- 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) {}
|