2
0
mirror of https://github.com/boostorg/mpi.git synced 2026-02-28 05:22:35 +00:00

Merge Boost.MPI change supporting signed characters

[SVN r44888]
This commit is contained in:
Douglas Gregor
2008-04-29 18:08:49 +00:00
parent b3a60e9473
commit d4334b661f

View File

@@ -282,6 +282,11 @@ BOOST_MPI_DATATYPE(unsigned long long, MPI_UNSIGNED_LONG_LONG, builtin);
BOOST_MPI_DATATYPE(unsigned __int64, MPI_UNSIGNED_LONG_LONG, builtin);
#endif
// Define signed char specialization of is_mpi_datatype, if possible.
#if defined(MPI_SIGNED_CHAR) || (defined(MPI_VERSION) && MPI_VERSION >= 2)
BOOST_MPI_DATATYPE(signed char, MPI_SIGNED_CHAR, builtin);
#endif
#endif // Doxygen
namespace detail {