blob: 8b527968742e31cfdf39be34162801941bab5f16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
--- FvwmCompositor/eigen/vector.h.orig 2008-03-25 17:15:13.000000000 +0000
+++ FvwmCompositor/eigen/vector.h
@@ -141,7 +141,7 @@ public:
*/
Vector( const Vector &v )
{
- readArray( v.array() );
+ this->readArray( v.array() );
}
/**
@@ -149,7 +149,7 @@ public:
*/
Vector( const T *array )
{
- readArray( array );
+ this->readArray( array );
}
/**
@@ -160,7 +160,7 @@ public:
Vector( int unused_size, const T *array )
{
assert( unused_size == this->size() );
- readArray( array );
+ this->readArray( array );
}
/**
@@ -312,7 +312,7 @@ public:
VectorX( const VectorX & other )
{
init( other._size() );
- readArray( other.array() );
+ this->readArray( other.array() );
}
/**
@@ -328,7 +328,7 @@ public:
VectorX( int size, const T * array )
{
init( size );
- readArray( array );
+ this->readArray( array );
}
~VectorX()
|