From: Shubham Gupta/System SW /SRI-Bangalore/Engineer/삼성전자 Date: Mon, 29 Oct 2018 02:10:59 +0000 (+0530) Subject: Updating addStage function declaration of Iplanbuilder (#3355) X-Git-Tag: 0.3~514 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=74695152bdc3771fb3c36507dc30eb644f8b8ec4;p=platform%2Fcore%2Fml%2Fnnfw.git Updating addStage function declaration of Iplanbuilder (#3355) This patch updates the declaration of addStage function of Iplanbuilder and it's associated comments. Due to ambiguous 's' in doxygen comment, this change is made. Signed-off-by: shubham --- diff --git a/runtimes/pure_arm_compute/src/compilation.cc b/runtimes/pure_arm_compute/src/compilation.cc index 429ff35..196451c 100644 --- a/runtimes/pure_arm_compute/src/compilation.cc +++ b/runtimes/pure_arm_compute/src/compilation.cc @@ -363,10 +363,10 @@ struct IPlanBuilder const Initializer &initializer) = 0; /** * @brief Add Stage lambda with IAllocationContext and IExecutionBuilder params - * @param [in] s Stage to add + * @param [in] stage Stage to add * @return N/A */ - virtual void addStage(const Stage &) = 0; + virtual void addStage(const Stage &stage) = 0; }; //