From 84392f4bcc70cb9f5079efba5b497ad45267015e Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Tue, 6 Oct 2020 20:41:21 +0100 Subject: COMPMID-3599: Fix missing break in TypePrinter Signed-off-by: Michalis Spyrou Change-Id: I76becae6d15fe05f0c72dd4bb6bfee8c75a247d5 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4098 Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/graph/TypePrinter.h | 1 + 1 file changed, 1 insertion(+) (limited to 'arm_compute/graph/TypePrinter.h') 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; -- cgit v1.2.1