aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/ITensor.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/ITensor.h')
-rw-r--r--arm_compute/core/ITensor.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/arm_compute/core/ITensor.h b/arm_compute/core/ITensor.h
index 131ee205ea..aad8313261 100644
--- a/arm_compute/core/ITensor.h
+++ b/arm_compute/core/ITensor.h
@@ -90,11 +90,13 @@ public:
bool is_used() const;
/** Marks a tensor as unused */
void mark_as_unused() const;
+ /** Marks a tensor as used */
+ void mark_as_used() const;
private:
- mutable bool _is_used = { true }; /**< Flag that marks if the tensor is used or not */
+ mutable bool _is_used = {true}; /**< Flag that marks if the tensor is used or not */
};
using IImage = ITensor;
-}
+} // namespace arm_compute
#endif /*ARM_COMPUTE_ITENSOR_H */