summaryrefslogtreecommitdiff
blob: 6e795e3548a9c6562695a2f9c3edfc874da4d135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 https://bugs.gentoo.org/440354
 
 src/nnet/map.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/src/nnet/map.h
+++ b/src/nnet/map.h
@@ -25,7 +25,7 @@ T2 & TMap<T1,T2>::operator [] (const T1 &key) {
 	else {
 		TData x;
 		x.first() = key;
-		return insert (x)->second();
+		return this->insert (x)->second();
 	}
 }