github-actions[bot] commented on code in PR #25489:
URL: https://github.com/apache/doris/pull/25489#discussion_r1360545321
##########
be/src/agent/cgroup_cpu_ctl.cpp:
##########
@@ -19,6 +19,8 @@
namespace doris {
+CgroupCpuCtl::~CgroupCpuCtl() {}
Review Comment:
warning: use '= default' to define a trivial destructor
[modernize-use-equals-default]
```suggestion
CgroupCpuCtl::~CgroupCpuCtl() = default;
```
##########
be/src/vec/exec/scan/scanner_scheduler.h:
##########
@@ -121,4 +121,64 @@ class ScannerScheduler {
config::doris_scanner_thread_pool_thread_num +
config::pipeline_executor_size;
};
+struct SimplifiedScanTask {
+ SimplifiedScanTask() {}
Review Comment:
warning: use '= default' to define a trivial default constructor
[modernize-use-equals-default]
```suggestion
SimplifiedScanTask() = default;
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]