From e324d2e5344d61182005e861bb1e7f65e670727b Mon Sep 17 00:00:00 2001 From: Tomoaki Teshima Date: Fri, 22 Jun 2018 20:17:22 +0900 Subject: [PATCH] suppress warning on Arm platform --- 3rdparty/carotene/hal/tegra_hal.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/carotene/hal/tegra_hal.hpp b/3rdparty/carotene/hal/tegra_hal.hpp index e6a3209..b91f862 100644 --- a/3rdparty/carotene/hal/tegra_hal.hpp +++ b/3rdparty/carotene/hal/tegra_hal.hpp @@ -1531,7 +1531,7 @@ class TegraCvtColor_##name##_Invoker : public cv::ParallelLoopBody \ public: \ TegraCvtColor_##name##_Invoker(const uchar * src_data_, size_t src_step_, uchar * dst_data_, size_t dst_step_, int width_, int height_) : \ cv::ParallelLoopBody(), src_data(src_data_), src_step(src_step_), dst_data(dst_data_), dst_step(dst_step_), width(width_), height(height_) {} \ - virtual void operator()(const cv::Range& range) const \ + virtual void operator()(const cv::Range& range) const CV_OVERRIDE \ { \ CAROTENE_NS::func(CAROTENE_NS::Size2D(width, range.end-range.start), __VA_ARGS__); \ } \ -- 2.7.4