From fcab4c951d9e97bab3a2ad907984996b1c430b20 Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Thu, 10 Jun 2010 21:26:23 +0100 Subject: Add line to prevent compiler warning on unused variables. --- test/unalignedcount.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/unalignedcount.cpp') diff --git a/test/unalignedcount.cpp b/test/unalignedcount.cpp index feff870e5..74eab8c6a 100644 --- a/test/unalignedcount.cpp +++ b/test/unalignedcount.cpp @@ -52,5 +52,8 @@ void test_unalignedcount() VERIFY_ALIGNED_UNALIGNED_COUNT(a.segment(0,40) -= b.segment(0,40), 10, 10, 10, 0); VERIFY_ALIGNED_UNALIGNED_COUNT(a.segment(0,40) *= 3.5, 10, 0, 10, 0); VERIFY_ALIGNED_UNALIGNED_COUNT(a.segment(0,40) /= 3.5, 10, 0, 10, 0); + #else + // The following line is to eliminate "variable not used" warnings + nb_load = nb_loadu = nb_store = nb_storeu = 0; #endif } -- cgit v1.2.3