Skip to content
Snippets Groups Projects
Commit 70a58c22 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber Committed by Jakub Klinkovský
Browse files

Fixing types in asserts of array and arrays assignment.

parent 0f97bfcd
No related branches found
No related tags found
1 merge request!105TO/matrices-adaptive-csr
......@@ -49,7 +49,7 @@ void
ArrayView< Value, Device, Index >::
bind( ValueType* data, IndexType size )
{
TNL_ASSERT_GE( size, 0, "ArrayView size was initialized with a negative size." );
TNL_ASSERT_GE( size, ( IndexType ) 0, "ArrayView size was initialized with a negative size." );
TNL_ASSERT_TRUE( (data == nullptr && size == 0) || (data != nullptr && size > 0),
"ArrayView was initialized with a positive address and zero size or zero address and positive size." );
......
......@@ -38,7 +38,7 @@ struct ArrayAssignment< Array, T, true >
static void assign( Array& a, const T& t )
{
TNL_ASSERT_EQ( a.getSize(), t.getSize(), "The sizes of the arrays must be equal." );
TNL_ASSERT_EQ( a.getSize(), ( decltype( a.getSize() ) ) t.getSize(), "The sizes of the arrays must be equal." );
// skip assignment of empty arrays
if( a.getSize() == 0 )
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment