PragmaTwice commented on code in PR #3317:
URL: https://github.com/apache/kvrocks/pull/3317#discussion_r2655091204


##########
src/common/string_util.h:
##########
@@ -80,7 +81,8 @@ std::string StringJoin(const T &con, F &&f, std::string_view 
sep = ", ") {
 
 template <typename T>
 std::string StringJoin(const T &con, std::string_view sep = ", ") {
-  return StringJoin(con, [](const auto &v) -> decltype(auto) { return v; }, 
sep);
+  return StringJoin(
+      con, [](const auto &v) -> decltype(auto) { return v; }, sep);

Review Comment:
   please revert this.



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

Reply via email to