From 07d94bdd821ab4012ae5801a3115353c842e2f84 Mon Sep 17 00:00:00 2001 From: qiaolongfei Date: Fri, 11 May 2018 11:30:10 +0800 Subject: [PATCH] fix compile fetch_op_handle on mac --- paddle/fluid/framework/details/fetch_op_handle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/framework/details/fetch_op_handle.h b/paddle/fluid/framework/details/fetch_op_handle.h index e696a7a9ce..e09bdd1d33 100644 --- a/paddle/fluid/framework/details/fetch_op_handle.h +++ b/paddle/fluid/framework/details/fetch_op_handle.h @@ -42,7 +42,7 @@ struct FetchOpHandle : public OpHandleBase { protected: void RunImpl() override; - virtual void WaitInputVarGenerated(const platform::Place &place); + void WaitInputVarGenerated(const platform::Place &place) override; private: FeedFetchList *data_; -- GitLab