From 7dc9d706be17b967441551b3e38d50453b3afd02 Mon Sep 17 00:00:00 2001 From: Siying Dong Date: Fri, 2 Mar 2018 14:44:34 -0800 Subject: [PATCH] Fix "*/" outside comment warning in env_hdfs.h --- hdfs/env_hdfs.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hdfs/env_hdfs.h b/hdfs/env_hdfs.h index 2ed6ba6d8..b0c9e33fd 100644 --- a/hdfs/env_hdfs.h +++ b/hdfs/env_hdfs.h @@ -332,13 +332,13 @@ class HdfsEnv : public Env { return notsup; } - virtual void Schedule(void (*/*function*/)(void* arg), void* /*arg*/, + virtual void Schedule(void (* /*function*/)(void* arg), void* /*arg*/, Priority /*pri*/ = LOW, void* /*tag*/ = nullptr, - void (*/*unschedFunction*/)(void* arg) = 0) override {} + void (* /*unschedFunction*/)(void* arg) = 0) override {} virtual int UnSchedule(void* /*tag*/, Priority /*pri*/) override { return 0; } - virtual void StartThread(void (*/*function*/)(void* arg), + virtual void StartThread(void (* /*function*/)(void* arg), void* /*arg*/) override {} virtual void WaitForJoin() override {}