aboutsummaryrefslogtreecommitdiff
path: root/delegate
diff options
context:
space:
mode:
authorNikhil Raj <nikhil.raj@arm.com>2022-05-30 11:08:52 +0100
committerNikhil Raj Arm <nikhil.raj@arm.com>2022-06-27 16:48:53 +0000
commit4d2eec0436f75d526c2ec25623ad73c8d1ee9ac3 (patch)
tree927ab42094125d813b6acf01329a44db0e39c23a /delegate
parent3cb65014be65f54b55f3e7ceb2f0b7fd0d27cf5c (diff)
downloadarmnn-4d2eec0436f75d526c2ec25623ad73c8d1ee9ac3.tar.gz
IVGCVSW-6981 Remove deprecated code 22.05 [Post Release]
Signed-off-by: Nikhil Raj <nikhil.raj@arm.com> Change-Id: I9ccaefbe28ea572e9e2b4a2168574804667f7460
Diffstat (limited to 'delegate')
-rw-r--r--delegate/src/MultiLayerFacade.hpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/delegate/src/MultiLayerFacade.hpp b/delegate/src/MultiLayerFacade.hpp
index c0df47bac9..2fdfc7082a 100644
--- a/delegate/src/MultiLayerFacade.hpp
+++ b/delegate/src/MultiLayerFacade.hpp
@@ -96,26 +96,12 @@ public:
return m_FirstLayer->GetGuid();
}
- // The Accept function needs to be wrapped in a no warn macro to avoid deprecation warnings from
- // the deprecated ILayerVisitor which is used in the function.
- ARMNN_NO_DEPRECATE_WARN_BEGIN
- ARMNN_DEPRECATED_MSG_REMOVAL_DATE("Accept is deprecated. The ILayerVisitor that works in conjunction with this "
- "Accept function is deprecated. Use IStrategy in combination with "
- "ExecuteStrategy instead, which is an ABI/API stable version of the "
- "visitor pattern.",
- "22.05")
- virtual void Accept(armnn::ILayerVisitor& visitor) const override
- {
- // Do not expect this function to be used so not providing an implementation
- }
- ARMNN_NO_DEPRECATE_WARN_END
-
virtual void ExecuteStrategy(armnn::IStrategy& strategy) const override
{
// Do not expect this function to be used so not providing an implementation
// if an implementation is required and the chain contains more than two operators
// would have to provide a way to record the intermediate layers so they could be
- // visited... the same applies to the Accept method above and the BackendSelectionHint
+ // visited... the same applies to the BackendSelectionHint
// below.
}