diff --git a/thrust/type_traits/logical_metafunctions.h b/thrust/type_traits/logical_metafunctions.h index 97297e93c..a889b08d0 100644 --- a/thrust/type_traits/logical_metafunctions.h +++ b/thrust/type_traits/logical_metafunctions.h @@ -131,9 +131,9 @@ struct conjunction_value<> : std::true_type {}; template struct conjunction_value : std::integral_constant {}; -template -struct conjunction_value - : std::integral_constant::value> {}; +template +struct conjunction_value + : std::integral_constant::value> {}; /////////////////////////////////////////////////////////////////////////////// @@ -153,9 +153,9 @@ struct disjunction_value<> : std::false_type {}; template struct disjunction_value : std::integral_constant {}; -template -struct disjunction_value - : std::integral_constant::value> {}; +template +struct disjunction_value + : std::integral_constant::value> {}; ///////////////////////////////////////////////////////////////////////////////