sfc-gh-nthimmegowda commented on code in PR #14147: URL: https://github.com/apache/arrow/pull/14147#discussion_r974764215
########## cpp/src/parquet/level_comparison.cc: ########## @@ -44,10 +44,10 @@ struct GreaterThanDynamicFunction { using FunctionType = decltype(&GreaterThanBitmap); static std::vector<std::pair<DispatchLevel, FunctionType>> implementations() { - return { - { DispatchLevel::NONE, standard::GreaterThanBitmapImpl } + return {{DispatchLevel::NONE, standard::GreaterThanBitmapImpl} #if defined(ARROW_HAVE_RUNTIME_AVX2) - , { DispatchLevel::AVX2, GreaterThanBitmapAvx2 } + , + {DispatchLevel::AVX2, GreaterThanBitmapAvx2} Review Comment: You are right. I was using clang-format-14. Changed to use clang-format-12 and this gets it inline. Waiting for Merge gates validation. -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org