github-actions[bot] commented on code in PR #38908: URL: https://github.com/apache/doris/pull/38908#discussion_r1705470952
########## be/src/olap/rowset/segment_v2/inverted_index_reader.h: ########## @@ -73,6 +73,97 @@ class InvertedIndexIterator; class InvertedIndexQueryCacheHandle; class InvertedIndexFileReader; struct InvertedIndexQueryInfo; +class InvertedIndexResultBitmap { +private: + std::shared_ptr<roaring::Roaring> _data_bitmap; + std::shared_ptr<roaring::Roaring> _null_bitmap; + +public: + // Default constructor + InvertedIndexResultBitmap() : _data_bitmap(nullptr), _null_bitmap(nullptr) {} Review Comment: warning: use '= default' to define a trivial default constructor [modernize-use-equals-default] ```suggestion InvertedIndexResultBitmap() : _data_bitmap(nullptr), _null_bitmap(nullptr) = 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