arm_compute v18.11
diff --git a/src/runtime/CPP/CPPScheduler.cpp b/src/runtime/CPP/CPPScheduler.cpp
index de28b4f..2b179fd 100644
--- a/src/runtime/CPP/CPPScheduler.cpp
+++ b/src/runtime/CPP/CPPScheduler.cpp
@@ -215,7 +215,6 @@
     : _num_threads(num_threads_hint()),
       _threads(_num_threads - 1)
 {
-    get_cpu_configuration(_cpu_info);
 }
 
 void CPPScheduler::set_num_threads(unsigned int num_threads)
@@ -229,6 +228,7 @@
     return _num_threads;
 }
 
+#ifndef DOXYGEN_SKIP_THIS
 void CPPScheduler::run_workloads(std::vector<IScheduler::Workload> &workloads)
 {
     const unsigned int num_threads = std::min(_num_threads, static_cast<unsigned int>(workloads.size()));
@@ -263,6 +263,7 @@
         std::cerr << "Caught system_error with code " << e.code() << " meaning " << e.what() << '\n';
     }
 }
+#endif /* DOXYGEN_SKIP_THIS */
 
 void CPPScheduler::schedule(ICPPKernel *kernel, const Hints &hints)
 {