toon-members
[Top][All Lists]
Advanced

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

[Toon-members] TooN helpers.h


From: Gerhard Reitmayr
Subject: [Toon-members] TooN helpers.h
Date: Wed, 22 Apr 2009 09:59:12 +0000

CVSROOT:        /cvsroot/toon
Module name:    TooN
Changes by:     Gerhard Reitmayr <gerhard>      09/04/22 09:59:12

Modified files:
        .              : helpers.h 

Log message:
        missing return type

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/TooN/helpers.h?cvsroot=toon&r1=1.51&r2=1.52

Patches:
Index: helpers.h
===================================================================
RCS file: /cvsroot/toon/TooN/helpers.h,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -b -r1.51 -r1.52
--- helpers.h   22 Apr 2009 08:11:30 -0000      1.51
+++ helpers.h   22 Apr 2009 09:59:12 -0000      1.52
@@ -371,7 +371,7 @@
 
        /// Symmetrize a matrix
        template<int Rows, int Cols, typename Precision, typename Base>
-       Symmetrize(Matrix<Rows,Cols,Precision,Base>& m){
+       void Symmetrize(Matrix<Rows,Cols,Precision,Base>& m){
                SizeMismatch<Rows,Cols>::test(m.num_rows(), m.num_cols());
                for(int r=0; r<m.num_rows()-1; r++){
                        for(int c=r+1; c<m.num_cols(); c++){




reply via email to

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