aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/TensorInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/TensorInfo.h')
-rw-r--r--arm_compute/core/TensorInfo.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arm_compute/core/TensorInfo.h b/arm_compute/core/TensorInfo.h
index 5fd6c47818..80ef7f8d5a 100644
--- a/arm_compute/core/TensorInfo.h
+++ b/arm_compute/core/TensorInfo.h
@@ -280,9 +280,10 @@ public:
{
return _is_resizable;
}
- void set_is_resizable(bool is_resizable) override
+ ITensorInfo &set_is_resizable(bool is_resizable) override
{
_is_resizable = is_resizable;
+ return *this;
}
ValidRegion valid_region() const override
{