Fixed more warnings.

This commit is contained in:
Hauke Heibel 2010-06-08 00:41:33 +02:00
parent 04274f6793
commit f6d26bf6dc

View File

@ -34,6 +34,9 @@ void test_first_aligned_helper(Scalar *array, int size)
template<typename Scalar>
void test_none_aligned_helper(Scalar *array, int size)
{
// Suppress 'unreferenced formal parameter's warnings.
(void)array;
(void)size;
VERIFY(ei_packet_traits<Scalar>::size == 1 || ei_first_aligned(array, size) == size);
}