github-actions[bot] commented on code in PR #28008: URL: https://github.com/apache/doris/pull/28008#discussion_r1415014599
########## be/src/runtime/runtime_filter_mgr.h: ########## @@ -76,7 +76,8 @@ class RuntimeFilterMgr { Status get_consume_filter(const int filter_id, const int node_id, IRuntimeFilter** consumer_filter); - Status get_consume_filters(const int filter_id, std::vector<IRuntimeFilter*>& consumer_filters); + Status get_consume_filters(const int filter_id, Review Comment: warning: parameter 'filter_id' is const-qualified in the function declaration; const-qualification of parameters only has an effect in function definitions [readability-avoid-const-params-in-decls] ```suggestion Status get_consume_filters(int filter_id, ``` -- 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