#1680 closed Bugs (fixed)
long long and wchar_t support in MPI
Reported by: | Douglas Gregor | Owned by: | Douglas Gregor |
---|---|---|---|
Milestone: | Component: | mpi | |
Version: | Boost 1.35.0 | Severity: | Problem |
Keywords: | Cc: |
Description
Boost.MPI doesn't provide support for long long or wchar_t, because the code for this support is #ifdef'd out:
#if 0 #ifndef BOOST_NO_INTRINSIC_WCHAR_T BOOST_MPI_DATATYPE(wchar_t, MPI_WCHAR, builtin); #endif
#ifdef BOOST_HAS_LONG_LONG BOOST_MPI_DATATYPE(long long, MPI_LONG_LONG_INT, builtin); BOOST_MPI_DATATYPE(unsigned long long, MPI_UNSIGNED_LONG_LONG, builtin); #endif #endif
We should enable support for long long and wchar_t when the underlying MPI supports it.
Change History (2)
comment:1 by , 15 years ago
Milestone: | Boost 1.36.0 → Boost 1.35.1 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Version: | Boost Development Trunk → Boost 1.35.0 |
Note:
See TracTickets
for help on using tickets.
Fixed on trunk and for Boost 1.35.1.