toon-members
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Toon-members] TooN/internal matrix.hh


From: Edward Rosten
Subject: [Toon-members] TooN/internal matrix.hh
Date: Wed, 09 Jun 2010 14:22:24 +0000

CVSROOT:        /cvsroot/toon
Module name:    TooN
Changes by:     Edward Rosten <edrosten>        10/06/09 14:22:24

Modified files:
        internal       : matrix.hh 

Log message:
        Add missing const.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/TooN/internal/matrix.hh?cvsroot=toon&r1=1.38&r2=1.39

Patches:
Index: matrix.hh
===================================================================
RCS file: /cvsroot/toon/TooN/internal/matrix.hh,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -b -r1.38 -r1.39
--- matrix.hh   27 Jul 2009 16:39:43 -0000      1.38
+++ matrix.hh   9 Jun 2010 14:22:24 -0000       1.39
@@ -262,7 +262,7 @@
        }
 
        template<int Rows2, int Cols2, typename Precision2, typename Base2>
-       bool operator== (const Matrix<Rows2, Cols2, Precision2, Base2>& rhs)
+       bool operator== const (const Matrix<Rows2, Cols2, Precision2, Base2>& 
rhs)
        {
                SizeMismatch<Rows, Rows2>::test(num_rows(), rhs.num_rows());
                SizeMismatch<Cols, Cols2>::test(num_cols(), rhs.num_cols());
@@ -275,7 +275,7 @@
        }
 
        template<int Rows2, int Cols2, typename Precision2, typename Base2>
-       bool operator!= (const Matrix<Rows2, Cols2, Precision2, Base2>& rhs)
+       bool operator!= const (const Matrix<Rows2, Cols2, Precision2, Base2>& 
rhs)
        {
                SizeMismatch<Rows, Rows2>::test(num_rows(), rhs.num_rows());
                SizeMismatch<Cols, Cols2>::test(num_cols(), rhs.num_cols());



reply via email to

[Prev in Thread] Current Thread [Next in Thread]