aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/runtime/gpu/cl/operators/ClActivation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/gpu/cl/operators/ClActivation.cpp b/src/runtime/gpu/cl/operators/ClActivation.cpp
index bef42d7fae..34a2f94fdc 100644
--- a/src/runtime/gpu/cl/operators/ClActivation.cpp
+++ b/src/runtime/gpu/cl/operators/ClActivation.cpp
@@ -69,7 +69,7 @@ std::tuple<IOperator *, StatusCode> ClContext::create_activation(const AclTensor
if(op == nullptr)
{
ARM_COMPUTE_LOG_ERROR_ACL("Couldn't allocate internal resources");
- return { nullptr, StatusCode::OutOfMemory };
+ return std::make_tuple(nullptr, StatusCode::OutOfMemory);
}
op->set_internal_operator(std::move(act_op));