SWDEV-277697 - Fix ununsed variable error with -Werror,-Wunused-parameter

Change-Id: Iadd0050e6cf4e4858e1508c1f24f73732a1af443


[ROCm/hip-tests commit: fc4a1ef2b8]
This commit is contained in:
cjatin
2021-06-03 11:56:54 +05:30
کامیت شده توسط Jatin Chaudhary
والد 91e7231469
کامیت 56f745ea62
@@ -51,7 +51,7 @@ void checkTest(T* expected_H, T* result_H, size_t N, bool expectMatch = true) {
checkVectors<T>(
expected_H, expected_H, result_H, N,
[](T a, T b) {
assert(a == b);
guarantee(a == b, "Both values should be equal");
return a;
},
expectMatch);