]> git.tdb.fi Git - libs/math.git/commitdiff
Minor fixes
authorMikko Rasa <tdb@tdb.fi>
Sat, 27 Apr 2013 17:05:11 +0000 (20:05 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sat, 27 Apr 2013 17:11:08 +0000 (20:11 +0300)
.gitignore
source/linal/dummy.cpp
source/linal/matrix.h

index f0ea9e5d7218a72326a6b048dfad542bd8e9eaac..d66094ef0633b898ea3b8e68632b2586757dd686 100644 (file)
@@ -1,4 +1,5 @@
-/.config
+.config
+temp
+/libmspmath.a
 /libmspmath.so
 /mspmath.pc
-/temp
index dd69a99efd8056affc0aebe66ba6e84dd35afcaf..28e681aa1488595f24566cb4accf71d5bb3e4750 100644 (file)
@@ -6,3 +6,4 @@
 
 /* This dummy file is needed to make Builder happy, and also serves as a syntax
 check by pulling in all the headers. */
+void dummy() { }
index 00e960d9ce8111de4d88bd0bf664d470183f442c..4fc2bc620136a37200629f9d72a3764cbaec2118 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef MSP_LIEAL_MATMIX_H_
-#define MSP_LIEAL_MATMIX_H_
+#ifndef MSP_LINAL_MATRIX_H_
+#define MSP_LINAL_MATRIX_H_
 
 #include "vector.h"
 
@@ -139,7 +139,7 @@ Vector<T, N> operator*(const Vector<T, M> &v, const Matrix<T, M, N> &m)
        Vector<T, N> r;
        for(unsigned j=0; j<N; ++j)
                for(unsigned i=0; i<M; ++i)
-                       r[j] += v[i]*m.at(i, j);
+                       r[j] += v[i]*m(i, j);
        return r;
 }