aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NECannyEdge.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/NEON/functions/NECannyEdge.cpp')
-rw-r--r--src/runtime/NEON/functions/NECannyEdge.cpp15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/runtime/NEON/functions/NECannyEdge.cpp b/src/runtime/NEON/functions/NECannyEdge.cpp
index 029d30c5d6..ca8877e2fc 100644
--- a/src/runtime/NEON/functions/NECannyEdge.cpp
+++ b/src/runtime/NEON/functions/NECannyEdge.cpp
@@ -41,8 +41,19 @@
using namespace arm_compute;
-NECannyEdge::NECannyEdge()
- : _sobel(), _gradient(), _non_max_suppr(), _edge_trace(), _border_mag_gradient(), _border_edge_trace(), _gx(), _gy(), _magnitude(), _phase(), _nonmax(), _output(nullptr)
+NECannyEdge::NECannyEdge() // NOLINT
+ : _sobel(),
+ _gradient(),
+ _non_max_suppr(),
+ _edge_trace(),
+ _border_mag_gradient(),
+ _border_edge_trace(),
+ _gx(),
+ _gy(),
+ _magnitude(),
+ _phase(),
+ _nonmax(),
+ _output(nullptr)
{
}