2
0
mirror of https://github.com/boostorg/mpi.git synced 2026-02-25 04:22:17 +00:00

Consistency between mpl's true and fale usage.

This commit is contained in:
Alain Miniussi
2015-04-16 17:08:42 +02:00
parent 5a17a3b90a
commit fc959903e3

View File

@@ -36,7 +36,7 @@ namespace boost { namespace mpi {
* @brief Type trait that determines if there exists a built-in
* integer MPI data type for a given C++ type.
*
* This ytpe trait determines when there is a direct mapping from a
* This type trait determines when there is a direct mapping from a
* C++ type to an MPI data type that is classified as an integer data
* type. See @c is_mpi_builtin_datatype for general information about
* built-in MPI data types.
@@ -49,7 +49,7 @@ struct is_mpi_integer_datatype
* @brief Type trait that determines if there exists a built-in
* floating point MPI data type for a given C++ type.
*
* This ytpe trait determines when there is a direct mapping from a
* This type trait determines when there is a direct mapping from a
* C++ type to an MPI data type that is classified as a floating
* point data type. See @c is_mpi_builtin_datatype for general
* information about built-in MPI data types.
@@ -62,7 +62,7 @@ struct is_mpi_floating_point_datatype
* @brief Type trait that determines if there exists a built-in
* logical MPI data type for a given C++ type.
*
* This ytpe trait determines when there is a direct mapping from a
* This type trait determines when there is a direct mapping from a
* C++ type to an MPI data type that is classified as an logical data
* type. See @c is_mpi_builtin_datatype for general information about
* built-in MPI data types.
@@ -75,7 +75,7 @@ struct is_mpi_logical_datatype
* @brief Type trait that determines if there exists a built-in
* complex MPI data type for a given C++ type.
*
* This ytpe trait determines when there is a direct mapping from a
* This type trait determines when there is a direct mapping from a
* C++ type to an MPI data type that is classified as an complex data
* type. See @c is_mpi_builtin_datatype for general information about
* built-in MPI data types.
@@ -88,7 +88,7 @@ struct is_mpi_complex_datatype
* @brief Type trait that determines if there exists a built-in
* byte MPI data type for a given C++ type.
*
* This ytpe trait determines when there is a direct mapping from a
* This type trait determines when there is a direct mapping from a
* C++ type to an MPI data type that is classified as an byte data
* type. See @c is_mpi_builtin_datatype for general information about
* built-in MPI data types.
@@ -198,7 +198,7 @@ get_mpi_datatype< CppType >(const CppType&) { return MPIType; } \
\
template<> \
struct BOOST_JOIN(is_mpi_,BOOST_JOIN(Kind,_datatype))< CppType > \
: boost::mpl::bool_<true> \
: boost::mpl::true_ \
{}
/// INTERNAL ONLY