summaryrefslogtreecommitdiff
blob: 6c889a662c2aea68e19014101e7ca80c54352694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Bug: https://bugs.gentoo.org/638596

--- a/src/nnet/matrix.cc
+++ b/src/nnet/matrix.cc
@@ -63,7 +63,7 @@
 template<class T> void CMatrix<T>::multiplyByTransponed (const CMatrix &y, CMatrix &retval)
 {
 	int i,j,k;
-	assert (cols == y.cols);
+	this->assert (cols == y.cols);
 	if (cols != y.cols) { retval.Realloc (0,0); return; }
 
 	T sum;
@@ -80,7 +80,7 @@
 template<class T> void CMatrix<T>::transponedMultiply (const CMatrix &y, CMatrix &retval)
 {
 	int i,j,k;
-	assert (rows == y.rows);
+	this->assert (rows == y.rows);
 	if (rows != y.rows) { retval.Realloc (0,0); return; }
 
 	T sum;