This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 1261fddcd7c [Fix](be)Fix gcc compile failed #31431
1261fddcd7c is described below

commit 1261fddcd7ce1316ef4b0c0ffbc23ea2c5278705
Author: wangbo <[email protected]>
AuthorDate: Tue Feb 27 10:09:33 2024 +0800

    [Fix](be)Fix gcc compile failed #31431
---
 be/src/runtime/task_group/task_group.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/be/src/runtime/task_group/task_group.h 
b/be/src/runtime/task_group/task_group.h
index c54fce2ab65..938f73ac20a 100644
--- a/be/src/runtime/task_group/task_group.h
+++ b/be/src/runtime/task_group/task_group.h
@@ -160,9 +160,9 @@ private:
 
     std::shared_mutex _task_sched_lock;
     std::unique_ptr<CgroupCpuCtl> _cgroup_cpu_ctl = nullptr;
-    std::unique_ptr<doris::pipeline::TaskScheduler> _task_sched = nullptr;
-    std::unique_ptr<vectorized::SimplifiedScanScheduler> _scan_task_sched = 
nullptr;
-    std::unique_ptr<vectorized::SimplifiedScanScheduler> 
_remote_scan_task_sched = nullptr;
+    std::unique_ptr<doris::pipeline::TaskScheduler> _task_sched {nullptr};
+    std::unique_ptr<vectorized::SimplifiedScanScheduler> _scan_task_sched 
{nullptr};
+    std::unique_ptr<vectorized::SimplifiedScanScheduler> 
_remote_scan_task_sched {nullptr};
     std::unique_ptr<ThreadPool> _non_pipe_thread_pool = nullptr;
 };
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to