summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-04-23 10:45:08 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-04-23 10:45:08 +0200
commit049d0fc95a5a1865e3f94369d9c74e2d28f6bcb8 (patch)
treeb644689e2fec309c38e0a8ab1531b68330f03f45
parent3eea8dc998f1f7929e5ffbb9a105496b216a7378 (diff)
Fixed a compiler warning message
-rw-r--r--test/routines/levelx/xomatcopy.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/routines/levelx/xomatcopy.hpp b/test/routines/levelx/xomatcopy.hpp
index bbf6006c..4638b61c 100644
--- a/test/routines/levelx/xomatcopy.hpp
+++ b/test/routines/levelx/xomatcopy.hpp
@@ -150,7 +150,7 @@ class TestXomatcopy {
static StatusCode RunReference2(const Arguments<T> &args, BuffersHost<T> &buffers_host, Queue&) {
return RunReference(args, buffers_host);
}
- static StatusCode RunReference3(const Arguments<T> &args, BuffersCUDA<T> &buffers, Queue &) {
+ static StatusCode RunReference3(const Arguments<T> &, BuffersCUDA<T> &, Queue &) {
return StatusCode::kUnknownError;
}