Commit 45a757de authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Removed useless comment and type alias from DistributedVerticalOperations.h

parent 09578e41
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -17,8 +17,6 @@ namespace TNL {
namespace Containers {
namespace Expressions {

////
// Vertical operations
template< typename Expression >
auto DistributedExpressionMin( const Expression& expression ) -> std::decay_t< decltype( expression[0] ) >
{
@@ -145,7 +143,6 @@ template< typename Expression >
auto DistributedExpressionSum( const Expression& expression ) -> std::decay_t< decltype( expression[0] ) >
{
   using ResultType = std::decay_t< decltype( expression[0] ) >;
   using IndexType = typename Expression::IndexType;
   using CommunicatorType = typename Expression::CommunicatorType;

   ResultType result = 0;