Skip to content
Snippets Groups Projects
Commit 87889508 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

removed unused cast.


git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/alugrid/trunk@1233 0d966ed9-3843-0410-af09-ebfb50bd7c74
parent 23b74e11
No related branches found
No related tags found
No related merge requests found
...@@ -26,15 +26,15 @@ extern "C" { ...@@ -26,15 +26,15 @@ extern "C" {
#define _mpiComm (getMPICommunicator(_mpiCommPtr)) #define _mpiComm (getMPICommunicator(_mpiCommPtr))
int MpAccessSTAR_MPI :: star_allgather (int * i, int si, int * o, int so) const { int MpAccessSTAR_MPI :: star_allgather (int * i, int si, int * o, int so) const {
return STAR_Allgather ((void *) i, si, MPI_INT, o, so, MPI_INT, _mpiComm, 0) ; return STAR_Allgather (i, si, MPI_INT, o, so, MPI_INT, _mpiComm, 0) ;
} }
int MpAccessSTAR_MPI :: star_allgather (char * i, int si, char * o, int so) const { int MpAccessSTAR_MPI :: star_allgather (char * i, int si, char * o, int so) const {
return STAR_Allgather ((void *) i, si, MPI_BYTE, o, so, MPI_BYTE, _mpiComm, 0) ; return STAR_Allgather (i, si, MPI_BYTE, o, so, MPI_BYTE, _mpiComm, 0) ;
} }
int MpAccessSTAR_MPI :: star_allgather (double * i, int si, double * o, int so) const { int MpAccessSTAR_MPI :: star_allgather (double * i, int si, double * o, int so) const {
return STAR_Allgather ((void * )i, si, MPI_DOUBLE, o, so, MPI_DOUBLE, _mpiComm, 0) ; return STAR_Allgather (i, si, MPI_DOUBLE, o, so, MPI_DOUBLE, _mpiComm, 0) ;
} }
template < class A > vector < vector < A > > template < class A > vector < vector < A > >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment