wangbo commented on code in PR #46640: URL: https://github.com/apache/doris/pull/46640#discussion_r1908115991
########## be/src/runtime/workload_group/workload_group_metrics.h: ########## @@ -30,6 +31,11 @@ class WorkloadGroup; template <typename T> class AtomicCounter; using IntCounter = AtomicCounter<int64_t>; + +template <typename T> +class AtomicGauge; +using IntGuage = AtomicGauge<int64_t>; Review Comment: forward declare, so there is no need to add include header -- 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]
