From 0082c366fc2db46ee2cb0e171c588dfc8f26ce73 Mon Sep 17 00:00:00 2001 From: Matthew Bentham Date: Mon, 3 Feb 2020 12:05:18 +0000 Subject: Silence warnings related to "control reaches end of non-void function" Move ERROR macros out of default branches in switch statements, to the end of the function. Signed-off-by: Matthew Bentham Change-Id: I66d47eb0f2fc0a3ab4bf2dd4a01d8b0907786c98 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2709 Tested-by: Arm Jenkins Reviewed-by: Pablo Marquez Reviewed-by: Sang-Hoon Park Comments-Addressed: Arm Jenkins --- src/runtime/SchedulerFactory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/runtime/SchedulerFactory.cpp') diff --git a/src/runtime/SchedulerFactory.cpp b/src/runtime/SchedulerFactory.cpp index 8bdd510367..63a130dc2a 100644 --- a/src/runtime/SchedulerFactory.cpp +++ b/src/runtime/SchedulerFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 ARM Limited. + * Copyright (c) 2019-2020 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -74,9 +74,9 @@ std::unique_ptr SchedulerFactory::create(Type type) } default: { - ARM_COMPUTE_ERROR("Invalid Scheduler type"); break; } } + ARM_COMPUTE_ERROR("Invalid Scheduler type"); } } // namespace arm_compute -- cgit v1.2.1