Opened 15 years ago

Closed 15 years ago

Last modified 14 years ago

#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 Douglas Gregor, 15 years ago

Milestone: Boost 1.36.0Boost 1.35.1
Resolution: fixed
Status: newclosed
Version: Boost Development TrunkBoost 1.35.0

Fixed on trunk and for Boost 1.35.1.

comment:2 by (none), 14 years ago

Milestone: Boost 1.35.1

Milestone Boost 1.35.1 deleted

Note: See TracTickets for help on using tickets.