github-actions[bot] commented on code in PR #39470: URL: https://github.com/apache/doris/pull/39470#discussion_r1719463520
########## be/src/util/once.h: ########## @@ -51,7 +51,7 @@ namespace doris { template <typename ReturnType> class DorisCallOnce { public: - DorisCallOnce() : _has_called(false) {} + DorisCallOnce() : _once_flag(false) {} Review Comment: warning: use '= default' to define a trivial default constructor [modernize-use-equals-default] ```suggestion DorisCallOnce() : _once_flag(false) = 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org