From f5f2391f0d925f2a8d0833114f63bd8cb1da27b1 Mon Sep 17 00:00:00 2001 From: Matthew Bentham Date: Thu, 5 Mar 2020 22:32:16 +0000 Subject: COMPMID-3069: Silence clang-8 warning wrt explicit default of deleted operator Signed-off-by: Matthew Bentham Change-Id: Ib94d2770dd7991a1d5aa5e63edcc96714b183033 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/c/VisualCompute/ComputeLibrary/+/229015 Tested-by: bsgcomp Reviewed-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2851 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- examples/graph_mobilenet_v2.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'examples/graph_mobilenet_v2.cpp') diff --git a/examples/graph_mobilenet_v2.cpp b/examples/graph_mobilenet_v2.cpp index 1f5b0ec1ac..0d6b4715c9 100644 --- a/examples/graph_mobilenet_v2.cpp +++ b/examples/graph_mobilenet_v2.cpp @@ -42,9 +42,7 @@ public: } GraphMobilenetV2Example(const GraphMobilenetV2Example &) = delete; GraphMobilenetV2Example &operator=(const GraphMobilenetV2Example &) = delete; - GraphMobilenetV2Example(GraphMobilenetV2Example &&) = default; // NOLINT - GraphMobilenetV2Example &operator=(GraphMobilenetV2Example &&) = default; // NOLINT - ~GraphMobilenetV2Example() override = default; + ~GraphMobilenetV2Example() override = default; bool do_setup(int argc, char **argv) override { -- cgit v1.2.1