aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/reference/ChannelExtract.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/reference/ChannelExtract.cpp')
-rw-r--r--tests/validation/reference/ChannelExtract.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/validation/reference/ChannelExtract.cpp b/tests/validation/reference/ChannelExtract.cpp
index 6f17fc06fe..fc7ae7d6cb 100644
--- a/tests/validation/reference/ChannelExtract.cpp
+++ b/tests/validation/reference/ChannelExtract.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2018 ARM Limited.
+ * Copyright (c) 2017-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -61,7 +61,7 @@ SimpleTensor<uint8_t> channel_extract(const TensorShape &shape, const std::vecto
const auto *src_pixel = reinterpret_cast<const T *>(src(src_coord));
auto *dst_pixel = reinterpret_cast<T *>(dst(dst_coord));
- dst_pixel[0] = src_pixel[channel_idx];
+ dst_pixel[0] = src_pixel[channel_idx]; // NOLINT
}
}