aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2014-05-05 15:03:29 +0200
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2014-05-05 15:03:29 +0200
commit56de8d38161f1f190688d9550bff7afcf4e9dc3f (patch)
tree1ee563ebd3b97641397e0589872fc592d4b03fc3 /test
parentb4beba72a2d31934d3a2a49401c792f9a8cd49e0 (diff)
Fixed unused variable warnings
Diffstat (limited to 'test')
-rw-r--r--test/packetmath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/packetmath.cpp b/test/packetmath.cpp
index 9dab07522..a51d31dbd 100644
--- a/test/packetmath.cpp
+++ b/test/packetmath.cpp
@@ -186,7 +186,7 @@ template<typename Scalar> void packetmath()
{
for (int i=0; i<PacketSize*2; ++i)
ref[i] = data1[i/PacketSize];
- Packet A0, A1, A2, A3;
+ Packet A0, A1;
internal::pbroadcast2<Packet>(data1, A0, A1);
internal::pstore(data2+0*PacketSize, A0);
internal::pstore(data2+1*PacketSize, A1);