From 4ec89c133f6f674bfa7dff54ed0a40504141cfc7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=B5=9C=ED=98=95=EA=B7=9C/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Senior=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Tue, 24 Apr 2018 13:30:00 +0900 Subject: [PATCH] Remove unnecessary return statement (#846) - Remove unnecessary return statement which make below code unreachable. Signed-off-by: Hyung-Kyu Choi --- src/runtime/ref/nn/common/CpuExecutor.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runtime/ref/nn/common/CpuExecutor.cpp b/src/runtime/ref/nn/common/CpuExecutor.cpp index 70136ec..bd83f02 100755 --- a/src/runtime/ref/nn/common/CpuExecutor.cpp +++ b/src/runtime/ref/nn/common/CpuExecutor.cpp @@ -1296,7 +1296,6 @@ int CpuExecutor::executeOperation(const Operation& operation) { nnAssert(false); #endif NYI(getOperationName(operation.type)); - return ANEURALNETWORKS_OP_FAILED; break; } if (!success) { -- 2.7.4