aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/unalignedcount.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-02-15 14:05:37 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-02-15 14:05:37 +0100
commita1091caa437602368ddc21bf752c83452d8bf578 (patch)
treec39e49b4038a08f8b51f949afdf220b3ac90e2d9 /test/unalignedcount.cpp
parent19f699ded01acff389f3559094cacfb5245816fb (diff)
Fix some unused or not initialized related warnings.
Diffstat (limited to 'test/unalignedcount.cpp')
-rw-r--r--test/unalignedcount.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/unalignedcount.cpp b/test/unalignedcount.cpp
index 5451159e6..ca7e159f3 100644
--- a/test/unalignedcount.cpp
+++ b/test/unalignedcount.cpp
@@ -40,5 +40,7 @@ void test_unalignedcount()
#else
// The following line is to eliminate "variable not used" warnings
nb_load = nb_loadu = nb_store = nb_storeu = 0;
+ int a(0), b(0);
+ VERIFY(a==b);
#endif
}