summaryrefslogtreecommitdiff
path: root/boost/mpi/datatype.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/mpi/datatype.hpp')
-rw-r--r--boost/mpi/datatype.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/boost/mpi/datatype.hpp b/boost/mpi/datatype.hpp
index 7fa7e1c3d0..c26dfdfc3b 100644
--- a/boost/mpi/datatype.hpp
+++ b/boost/mpi/datatype.hpp
@@ -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