X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d17275a7f232bacf3d00279e3ba76c32cc6cf2c5..a83589a60351b3dcf30b1990323bc7518362f75d:/src/smpi/smpi_datatype_derived.hpp diff --git a/src/smpi/smpi_datatype_derived.hpp b/src/smpi/smpi_datatype_derived.hpp index 22d957b4a6..12e1829fad 100644 --- a/src/smpi/smpi_datatype_derived.hpp +++ b/src/smpi/smpi_datatype_derived.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2010, 2012-2014. The SimGrid Team. +/* Copyright (c) 2009-2010, 2012-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -21,7 +21,6 @@ class Type_Contiguous: public Datatype{ public: Type_Contiguous(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, MPI_Datatype old_type); ~Type_Contiguous(); - void use(); void serialize( void* noncontiguous, void *contiguous, int count); void unserialize( void* contiguous_vector, void *noncontiguous_vector, @@ -37,7 +36,6 @@ class Type_Vector: public Datatype{ public: Type_Vector(int size,MPI_Aint lb, MPI_Aint ub, int flags, int count, int blocklen, int stride, MPI_Datatype old_type); ~Type_Vector(); - void use(); void serialize( void* noncontiguous, void *contiguous, int count); void unserialize( void* contiguous_vector, void *noncontiguous_vector, @@ -53,7 +51,6 @@ class Type_Hvector: public Datatype{ public: Type_Hvector(int size,MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int block_length, MPI_Aint block_stride, MPI_Datatype old_type); ~Type_Hvector(); - void use(); void serialize( void* noncontiguous, void *contiguous, int count); void unserialize( void* contiguous_vector, void *noncontiguous_vector, @@ -69,7 +66,6 @@ class Type_Indexed: public Datatype{ public: Type_Indexed(int size,MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int* block_lengths, int* block_indices, MPI_Datatype old_type); ~Type_Indexed(); - void use(); void serialize( void* noncontiguous, void *contiguous, int count); void unserialize( void* contiguous_vector, void *noncontiguous_vector, @@ -85,7 +81,6 @@ class Type_Hindexed: public Datatype{ public: Type_Hindexed(int size,MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int* block_lengths, MPI_Aint* block_indices, MPI_Datatype old_type); ~Type_Hindexed(); - void use(); void serialize( void* noncontiguous, void *contiguous, int count); void unserialize( void* contiguous_vector, void *noncontiguous_vector, @@ -101,7 +96,6 @@ class Type_Struct: public Datatype{ public: Type_Struct(int size,MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int* block_lengths, MPI_Aint* block_indices, MPI_Datatype* old_types); ~Type_Struct(); - void use(); void serialize( void* noncontiguous, void *contiguous, int count); void unserialize( void* contiguous_vector, void *noncontiguous_vector,