From 0369067b5dd5516b0ffb3e7a146dba4f9abceb48 Mon Sep 17 00:00:00 2001 From: boufaras Date: Wed, 14 Sep 2011 15:14:52 +0000 Subject: [PATCH] update doc for doxygen git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2390 331e1502-861f-0410-8da2-ba01fb791d7f --- branches/ParadisEO-GPU/src/GPUType/moGPUIntVector.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/branches/ParadisEO-GPU/src/GPUType/moGPUIntVector.h b/branches/ParadisEO-GPU/src/GPUType/moGPUIntVector.h index 918f73c35..a6b2a88ae 100644 --- a/branches/ParadisEO-GPU/src/GPUType/moGPUIntVector.h +++ b/branches/ParadisEO-GPU/src/GPUType/moGPUIntVector.h @@ -107,13 +107,13 @@ public: * Write object. Called printOn since it prints the object _on_ a stream. * @param _os A std::ostream. */ - void printOn(std::ostream& os) const { - EO::printOn(os); - os << ' '; - os << N << ' '; + void printOn(std::ostream& _os) const { + EO::printOn(_os); + _os << ' '; + _os << N << ' '; unsigned int i; for (i = 0; i < N; i++) - os << vect[i] << ' '; + _os << vect[i] << ' '; }