From f4af76e796a57e453f3717cfdf40c8bcf132b62e Mon Sep 17 00:00:00 2001 From: Moritz Pflanzer Date: Wed, 6 Sep 2017 07:42:43 +0100 Subject: COMPMID-417: Fix clang tidy after renaming Change-Id: I3e327bcbb4719c493c45397243354289c3223945 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/86677 Reviewed-by: Anthony Barbier Tested-by: Kaizen --- src/runtime/CL/functions/CLOpticalFlow.cpp | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'src/runtime/CL/functions/CLOpticalFlow.cpp') diff --git a/src/runtime/CL/functions/CLOpticalFlow.cpp b/src/runtime/CL/functions/CLOpticalFlow.cpp index 542f5961fa..07ca2f91b4 100644 --- a/src/runtime/CL/functions/CLOpticalFlow.cpp +++ b/src/runtime/CL/functions/CLOpticalFlow.cpp @@ -37,9 +37,22 @@ using namespace arm_compute; -CLOpticalFlow::CLOpticalFlow() - : _tracker_init_kernel(), _tracker_stage0_kernel(), _tracker_stage1_kernel(), _tracker_finalize_kernel(), _func_scharr(), _scharr_gx(), _scharr_gy(), _old_points(nullptr), - _new_points_estimates(nullptr), _new_points(nullptr), _old_points_internal(), _new_points_internal(), _coefficient_table(), _old_values(), _num_levels(0) +CLOpticalFlow::CLOpticalFlow() // NOLINT + : _tracker_init_kernel(), + _tracker_stage0_kernel(), + _tracker_stage1_kernel(), + _tracker_finalize_kernel(), + _func_scharr(), + _scharr_gx(), + _scharr_gy(), + _old_points(nullptr), + _new_points_estimates(nullptr), + _new_points(nullptr), + _old_points_internal(), + _new_points_internal(), + _coefficient_table(), + _old_values(), + _num_levels(0) { } -- cgit v1.2.1