summaryrefslogtreecommitdiffstats
path: root/games/pentagram/pentagram_gcc47.patch
blob: 153c40ea6d19329fea096e7788384828c2128f66 (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
--- pentagram-20110229_svn/misc/istring.h	2004-11-14 11:09:40.000000000 -0200
+++ pentagram-20110229_svn_patched/misc/istring.h	2012-09-16 00:36:09.000000000 -0300
@@ -143,37 +143,37 @@
 
 	_Myt& operator=(const _Myt& _Right)
 		{	// assign _Right
-		assign(_Right);
+		this->assign(_Right);
 		return (*this);
 		}
 
 	_Myt& operator=(const _Elem *_Ptr)
 		{	// assign [_Ptr, <null>)
-		assign(_Ptr);
+		this->assign(_Ptr);
 		return (*this);
 		}
 
 	_Myt& operator=(_Elem _Ch)
 		{	// assign 1 * _Ch
-		assign(1, _Ch);
+		this->assign(1, _Ch);
 		return (*this);
 		}
 
 	_Myt& operator+=(const _Myt& _Right)
 		{	// append _Right
-		append(_Right);
+		this->append(_Right);
 		return (*this);
 		}
 
 	_Myt& operator+=(const _Elem *_Ptr)
 		{	// append [_Ptr, <null>)
-		append(_Ptr);
+		this->append(_Ptr);
 		return (*this);
 		}
 
 	_Myt& operator+=(_Elem _Ch)
 		{	// append 1 * _Ch
-		append(static_cast<size_type>(1), _Ch);
+		this->append(static_cast<size_type>(1), _Ch);
 		return (*this);
 		}