aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/graph_inception_resnet_v1.cpp4
-rw-r--r--examples/graph_mobilenet.cpp4
-rw-r--r--examples/graph_mobilenet_v2.cpp4
-rw-r--r--examples/graph_resnet12.cpp6
-rw-r--r--examples/graph_srcnn955.cpp6
-rw-r--r--examples/graph_ssd_mobilenet.cpp6
-rw-r--r--examples/graph_vgg_vdsr.cpp6
7 files changed, 11 insertions, 25 deletions
diff --git a/examples/graph_inception_resnet_v1.cpp b/examples/graph_inception_resnet_v1.cpp
index 599aa5c8ac..ea9bf8f5a9 100644
--- a/examples/graph_inception_resnet_v1.cpp
+++ b/examples/graph_inception_resnet_v1.cpp
@@ -49,9 +49,7 @@ public:
}
InceptionResNetV1Example(const InceptionResNetV1Example &) = delete;
InceptionResNetV1Example &operator=(const InceptionResNetV1Example &) = delete;
- InceptionResNetV1Example(InceptionResNetV1Example &&) = default; // NOLINT
- InceptionResNetV1Example &operator=(InceptionResNetV1Example &&) = default; // NOLINT
- ~InceptionResNetV1Example() override = default;
+ ~InceptionResNetV1Example() override = default;
bool do_setup(int argc, char **argv) override
{
// Parse arguments
diff --git a/examples/graph_mobilenet.cpp b/examples/graph_mobilenet.cpp
index 23653c52c8..bb893998be 100644
--- a/examples/graph_mobilenet.cpp
+++ b/examples/graph_mobilenet.cpp
@@ -45,9 +45,7 @@ public:
}
GraphMobilenetExample(const GraphMobilenetExample &) = delete;
GraphMobilenetExample &operator=(const GraphMobilenetExample &) = delete;
- GraphMobilenetExample(GraphMobilenetExample &&) = default; // NOLINT
- GraphMobilenetExample &operator=(GraphMobilenetExample &&) = default; // NOLINT
- ~GraphMobilenetExample() override = default;
+ ~GraphMobilenetExample() override = default;
bool do_setup(int argc, char **argv) override
{
// Parse arguments
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
{
diff --git a/examples/graph_resnet12.cpp b/examples/graph_resnet12.cpp
index 33f29dd500..120cc9b755 100644
--- a/examples/graph_resnet12.cpp
+++ b/examples/graph_resnet12.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2019 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -47,9 +47,7 @@ public:
}
GraphResNet12Example(const GraphResNet12Example &) = delete;
GraphResNet12Example &operator=(const GraphResNet12Example &) = delete;
- GraphResNet12Example(GraphResNet12Example &&) = default; // NOLINT
- GraphResNet12Example &operator=(GraphResNet12Example &&) = default; // NOLINT
- ~GraphResNet12Example() override = default;
+ ~GraphResNet12Example() override = default;
bool do_setup(int argc, char **argv) override
{
// Parse arguments
diff --git a/examples/graph_srcnn955.cpp b/examples/graph_srcnn955.cpp
index 29faf72ac2..18921065d7 100644
--- a/examples/graph_srcnn955.cpp
+++ b/examples/graph_srcnn955.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2019 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -47,9 +47,7 @@ public:
}
GraphSRCNN955Example(const GraphSRCNN955Example &) = delete;
GraphSRCNN955Example &operator=(const GraphSRCNN955Example &) = delete;
- GraphSRCNN955Example(GraphSRCNN955Example &&) = default; // NOLINT
- GraphSRCNN955Example &operator=(GraphSRCNN955Example &&) = default; // NOLINT
- ~GraphSRCNN955Example() override = default;
+ ~GraphSRCNN955Example() override = default;
bool do_setup(int argc, char **argv) override
{
// Parse arguments
diff --git a/examples/graph_ssd_mobilenet.cpp b/examples/graph_ssd_mobilenet.cpp
index b3476b8e80..f2a8b30bb2 100644
--- a/examples/graph_ssd_mobilenet.cpp
+++ b/examples/graph_ssd_mobilenet.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2019 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -54,9 +54,7 @@ public:
}
GraphSSDMobilenetExample(const GraphSSDMobilenetExample &) = delete;
GraphSSDMobilenetExample &operator=(const GraphSSDMobilenetExample &) = delete;
- GraphSSDMobilenetExample(GraphSSDMobilenetExample &&) = default; // NOLINT
- GraphSSDMobilenetExample &operator=(GraphSSDMobilenetExample &&) = default; // NOLINT
- ~GraphSSDMobilenetExample() override = default;
+ ~GraphSSDMobilenetExample() override = default;
bool do_setup(int argc, char **argv) override
{
// Parse arguments
diff --git a/examples/graph_vgg_vdsr.cpp b/examples/graph_vgg_vdsr.cpp
index 870d3cb391..c308236f5b 100644
--- a/examples/graph_vgg_vdsr.cpp
+++ b/examples/graph_vgg_vdsr.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2019 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -48,9 +48,7 @@ public:
}
GraphVDSRExample(const GraphVDSRExample &) = delete;
GraphVDSRExample &operator=(const GraphVDSRExample &) = delete;
- GraphVDSRExample(GraphVDSRExample &&) = default; // NOLINT
- GraphVDSRExample &operator=(GraphVDSRExample &&) = default; // NOLINT
- ~GraphVDSRExample() override = default;
+ ~GraphVDSRExample() override = default;
bool do_setup(int argc, char **argv) override
{
// Parse arguments