aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/TypePrinter.h
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2020-10-06 20:41:21 +0100
committerMichalis Spyrou <michalis.spyrou@arm.com>2020-10-07 13:48:51 +0000
commit84392f4bcc70cb9f5079efba5b497ad45267015e (patch)
tree9d0c309b7ec2e2f81254958a18570eb88ae817a6 /arm_compute/graph/TypePrinter.h
parentddb93bbf12fc9d685e7ddbef703a886d67cbda9b (diff)
downloadComputeLibrary-84392f4bcc70cb9f5079efba5b497ad45267015e.tar.gz
COMPMID-3599: Fix missing break in TypePrinter
Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com> Change-Id: I76becae6d15fe05f0c72dd4bb6bfee8c75a247d5 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4098 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/graph/TypePrinter.h')
-rw-r--r--arm_compute/graph/TypePrinter.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arm_compute/graph/TypePrinter.h b/arm_compute/graph/TypePrinter.h
index 22b96a04c3..e8024980c1 100644
--- a/arm_compute/graph/TypePrinter.h
+++ b/arm_compute/graph/TypePrinter.h
@@ -124,6 +124,7 @@ inline ::std::ostream &operator<<(::std::ostream &os, const NodeType &node_type)
break;
case NodeType::L2NormalizeLayer:
os << "L2NormalizeLayer";
+ break;
case NodeType::NormalizationLayer:
os << "NormalizationLayer";
break;