Autopilot-CVS: sim/src/mat Matrix.h,2.3,2.4
Status: Alpha
Brought to you by:
tramm
|
From: Trammell H. <tr...@us...> - 2003-02-19 03:22:17
|
Update of /cvsroot/autopilot/sim/src/mat
In directory sc8-pr-cvs1:/tmp/cvs-serv30632/src/mat
Modified Files:
Matrix.h
Log Message:
Random C++ conformance issues
Index: Matrix.h
===================================================================
RCS file: /cvsroot/autopilot/sim/src/mat/Matrix.h,v
retrieving revision 2.3
retrieving revision 2.4
diff -u -d -r2.3 -r2.4
--- Matrix.h 4 Oct 2002 15:00:35 -0000 2.3
+++ Matrix.h 19 Feb 2003 03:22:14 -0000 2.4
@@ -459,10 +459,10 @@
{
typedef typename Matrix<n,m,T>::index_t index_t;
- out << '[' << endl;
+ out << '[' << std::endl;
for( index_t i=0 ; i < M.rows() ; i++ )
- out << M[i] << endl;
+ out << M[i] << std::endl;
out << ']';
return out;
|