From 3aa263b1321940718e0a97800d4618d262866177 Mon Sep 17 00:00:00 2001 From: geay Date: Tue, 25 Mar 2014 16:31:09 +0100 Subject: [PATCH] Wshadow proof --- src/ParaMEDMEM/MPIAccess.hxx | 42 ++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/src/ParaMEDMEM/MPIAccess.hxx b/src/ParaMEDMEM/MPIAccess.hxx index 7c28c286b..b229c125e 100644 --- a/src/ParaMEDMEM/MPIAccess.hxx +++ b/src/ParaMEDMEM/MPIAccess.hxx @@ -181,9 +181,9 @@ namespace ParaMEDMEM }; - inline void MPIAccess::trace( bool trace ) + inline void MPIAccess::trace( bool atrace ) { - _trace = trace ; + _trace = atrace ; } // Delete the structure Request corresponding to RequestId identifier after @@ -254,43 +254,43 @@ namespace ParaMEDMEM } // Returns true if the tag MPITag corresponds to a TimeMessage - inline bool MPIAccess::isTimeMessage( int MPITag ) const + inline bool MPIAccess::isTimeMessage( int aMPITag ) const { - return ((MPITag%MODULO_TAG) == _message_time) ; + return ((aMPITag%MODULO_TAG) == _message_time) ; } // Returns the MPI size of a TimeMessage inline MPI_Aint MPIAccess::timeExtent() const { - MPI_Aint extent ; - MPI_Type_extent( _MPI_TIME , &extent ) ; - return extent ; + MPI_Aint aextent ; + MPI_Type_extent( _MPI_TIME , &aextent ) ; + return aextent ; } // Returns the MPI size of a MPI_INT inline MPI_Aint MPIAccess::intExtent() const { - MPI_Aint extent ; - MPI_Type_extent( MPI_INT , &extent ) ; - return extent ; + MPI_Aint aextent ; + MPI_Type_extent( MPI_INT , &aextent ) ; + return aextent ; } // Returns the MPI size of a MPI_DOUBLE inline MPI_Aint MPIAccess::doubleExtent() const { - MPI_Aint extent ; - MPI_Type_extent( MPI_DOUBLE , &extent ) ; - return extent ; + MPI_Aint aextent ; + MPI_Type_extent( MPI_DOUBLE , &aextent ) ; + return aextent ; } // Returns the MPI size of the MPI_Datatype datatype - inline MPI_Aint MPIAccess::extent( MPI_Datatype datatype ) const + inline MPI_Aint MPIAccess::extent( MPI_Datatype adatatype ) const { - if ( datatype == _MPI_TIME ) + if ( adatatype == _MPI_TIME ) return timeExtent() ; - if ( datatype == MPI_INT ) + if ( adatatype == MPI_INT ) return intExtent() ; - if ( datatype == MPI_DOUBLE ) + if ( adatatype == MPI_DOUBLE ) return doubleExtent() ; return 0 ; } @@ -450,14 +450,14 @@ namespace ParaMEDMEM // Returns the _MessageIdent enum value corresponding to the MPI_Datatype datatype // Look at MPIAccess::NewSendTag/NewRecvTag in MPIAccess.cxx - inline _MessageIdent MPIAccess::methodId( MPI_Datatype datatype ) const + inline _MessageIdent MPIAccess::methodId( MPI_Datatype adatatype ) const { _MessageIdent aMethodIdent ; - if ( datatype == _MPI_TIME ) + if ( adatatype == _MPI_TIME ) aMethodIdent = _message_time; - else if ( datatype == MPI_INT ) + else if ( adatatype == MPI_INT ) aMethodIdent = _message_int ; - else if ( datatype == MPI_DOUBLE ) + else if ( adatatype == MPI_DOUBLE ) aMethodIdent = _message_double ; else aMethodIdent = _message_unknown ; -- 2.39.2