arm_compute v18.08
diff --git a/examples/neon_convolution.cpp b/examples/neon_convolution.cpp
index d51d201..1a7e865 100644
--- a/examples/neon_convolution.cpp
+++ b/examples/neon_convolution.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2016, 2018 ARM Limited.
+ * Copyright (c) 2016-2018 ARM Limited.
  *
  * SPDX-License-Identifier: MIT
  *
@@ -24,6 +24,7 @@
 #include "arm_compute/runtime/NEON/NEFunctions.h"
 
 #include "arm_compute/core/Types.h"
+#include "utils/ImageLoader.h"
 #include "utils/Utils.h"
 
 using namespace arm_compute;
@@ -52,7 +53,7 @@
 class NEONConvolutionExample : public Example
 {
 public:
-    void do_setup(int argc, char **argv) override
+    bool do_setup(int argc, char **argv) override
     {
         /** [Accurate padding] **/
         PPMLoader ppm;
@@ -93,6 +94,8 @@
             output_filename = std::string(argv[1]) + "_out.ppm";
         }
         /** [Accurate padding] **/
+
+        return true;
     }
     void do_run() override
     {