c75745b
diff -up scantailor-0.9.11.1/math/MatrixCalc.h.f30-buildfailures scantailor-0.9.11.1/math/MatrixCalc.h
c75745b
--- scantailor-0.9.11.1/math/MatrixCalc.h.f30-buildfailures	2019-04-29 16:30:51.787691552 +0200
c75745b
+++ scantailor-0.9.11.1/math/MatrixCalc.h	2019-04-29 16:31:06.358733136 +0200
c75745b
@@ -103,9 +103,9 @@ public:
c75745b
 	Mat operator-() const;
c75745b
 
c75745b
 	T const* rawData() const { return data; }
c75745b
-private:
c75745b
 	Mat(AbstractAllocator<T>* alloc, T const* data, int rows, int cols)
c75745b
 		: alloc(alloc), data(data), rows(rows), cols(cols) {}
c75745b
+private:
c75745b
 
c75745b
 	AbstractAllocator<T>* alloc;
c75745b
 	T const* data;