Commit f3156459 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed the return type of Expressions::Minus::evaluate

parent 435c8ddf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ template< typename T1 >
struct Minus
{
   __cuda_callable__
   static T1 evaluate( const T1& a )
   static auto evaluate( const T1& a ) -> decltype( -a )
   {
      return -a;
   }