COMPMID-417: Fix clang tidy after renaming

Change-Id: I3e327bcbb4719c493c45397243354289c3223945
Reviewed-on: http://mpd-gerrit.cambridge.arm.com/86677
Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
diff --git a/src/runtime/NEON/functions/NEOpticalFlow.cpp b/src/runtime/NEON/functions/NEOpticalFlow.cpp
index d851e9a..3e69a33 100644
--- a/src/runtime/NEON/functions/NEOpticalFlow.cpp
+++ b/src/runtime/NEON/functions/NEOpticalFlow.cpp
@@ -37,8 +37,16 @@
 
 using namespace arm_compute;
 
-NEOpticalFlow::NEOpticalFlow()
-    : _func_scharr(), _kernel_tracker(), _scharr_gx(), _scharr_gy(), _new_points(nullptr), _new_points_estimates(nullptr), _old_points(nullptr), _new_points_internal(), _old_points_internal(),
+NEOpticalFlow::NEOpticalFlow() // NOLINT
+    : _func_scharr(),
+      _kernel_tracker(),
+      _scharr_gx(),
+      _scharr_gy(),
+      _new_points(nullptr),
+      _new_points_estimates(nullptr),
+      _old_points(nullptr),
+      _new_points_internal(),
+      _old_points_internal(),
       _num_levels(0)
 {
 }