aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-04-01 12:35:36 +0100
committerManuel Bottini <manuel.bottini@arm.com>2020-04-02 10:25:49 +0000
commit15e4d876643c37e1db36ee1190ec52319479ffaf (patch)
tree8917792e9ccb5088018fbea38f522ea4ecfb244c
parentcbd8144cf623b7d6f691ba7d3a30ae933e87efd8 (diff)
downloadComputeLibrary-15e4d876643c37e1db36ee1190ec52319479ffaf.tar.gz
Missing include for ARM_COMPUTE_ERROR_ON in QuantizationInfo.h for clang
Change-Id: I3773a4142afd2e660fed4acc970fbafe48420366 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2968 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--arm_compute/core/QuantizationInfo.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arm_compute/core/QuantizationInfo.h b/arm_compute/core/QuantizationInfo.h
index f859beb87a..52ef149e9b 100644
--- a/arm_compute/core/QuantizationInfo.h
+++ b/arm_compute/core/QuantizationInfo.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019 ARM Limited.
+ * Copyright (c) 2019-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -26,6 +26,7 @@
#include "arm_compute/core/Rounding.h"
#include "utils/misc/Utility.h"
+#include "arm_compute/core/Error.h"
#include <cstddef>
#include <type_traits>