github-actions[bot] commented on code in PR #17867:
URL: https://github.com/apache/doris/pull/17867#discussion_r1138408107


##########
be/src/vec/common/hash_table/string_hash_map.h:
##########
@@ -203,6 +211,7 @@ class StringHashMap : public 
StringHashTable<StringHashMapSubMaps<TMapped, Alloc
         for (auto& v : this->m1) func(v.get_second());
         for (auto& v : this->m2) func(v.get_second());
         for (auto& v : this->m3) func(v.get_second());
+        for (auto& v : this->m4) func(v.get_second());

Review Comment:
   warning: statement should be inside braces 
[readability-braces-around-statements]
   
   ```suggestion
           for (auto& v : this->m4) { func(v.get_second());
   }
   ```
   



-- 
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]

Reply via email to