Skip to content
Snippets Groups Projects
Commit 0df901d0 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Added missing __cuda_callable__ flag to ArrayTest

parent 75db54a7
No related branches found
No related tags found
No related merge requests found
...@@ -32,6 +32,7 @@ struct MyData ...@@ -32,6 +32,7 @@ struct MyData
__cuda_callable__ __cuda_callable__
MyData( T v ) : data(v) {} MyData( T v ) : data(v) {}
__cuda_callable__
bool operator==( const MyData& v ) const { return data == v.data; } bool operator==( const MyData& v ) const { return data == v.data; }
// operator used in tests, not necessary for Array to work // operator used in tests, not necessary for Array to work
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment