From fafe588f5a9a8ee4e47c8d3ad7d403c98bf3c6d9 Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Thu, 1 Feb 2024 14:56:28 +0000 Subject: [PATCH] [Upd] inline two functions --- include/aidge/operator/GenericOperator.hpp | 2 +- include/aidge/operator/Operator.hpp | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/include/aidge/operator/GenericOperator.hpp b/include/aidge/operator/GenericOperator.hpp index c966b5f5c..624af6e75 100644 --- a/include/aidge/operator/GenericOperator.hpp +++ b/include/aidge/operator/GenericOperator.hpp @@ -59,7 +59,7 @@ public: // Helper functions that can be used with setComputeOutputDims(): static const ComputeDimsFunc Identity; - void setComputeOutputDims(ComputeDimsFunc func) { + inline void setComputeOutputDims(ComputeDimsFunc func) { mComputeOutputDims = func; } diff --git a/include/aidge/operator/Operator.hpp b/include/aidge/operator/Operator.hpp index cebc2d540..808450030 100644 --- a/include/aidge/operator/Operator.hpp +++ b/include/aidge/operator/Operator.hpp @@ -118,9 +118,7 @@ public: * @brief Set the a new OperatorImpl to the Operator * */ - void setImpl(std::shared_ptr<OperatorImpl> impl){ - mImpl = impl; - } + inline void setImpl(std::shared_ptr<OperatorImpl> impl) { mImpl = impl; } /** * @brief Minimum amount of data from a specific input for one computation pass. -- GitLab