From: 이성재/On-Device Lab(SR)/Principal Engineer/삼성전자 Date: Thu, 9 May 2019 09:21:52 +0000 (+0900) Subject: Fix compile error. (#5170) X-Git-Tag: submit/tizen/20190809.050447~817 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=711c4722eb8dcefff6186405e7689049c7e0699f;p=platform%2Fcore%2Fml%2Fnnfw.git Fix compile error. (#5170) - fix unintended implicit fallthrough in switch case. Signed-off-by: Sung-Jae Lee --- diff --git a/runtimes/neurun/backend/cpu/operand/Tensor.cc b/runtimes/neurun/backend/cpu/operand/Tensor.cc index 3ac5f5e..3f12b5a 100644 --- a/runtimes/neurun/backend/cpu/operand/Tensor.cc +++ b/runtimes/neurun/backend/cpu/operand/Tensor.cc @@ -92,6 +92,7 @@ size_t Tensor::calcOffset(const neurun::util::feature::Coordinate4D &coords) { throw std::runtime_error("Wrong Layout"); } + break; } case 4: {