================
@@ -0,0 +1,29 @@
+.. title:: clang-tidy - readability-ConditionalToStdMinMax
+
+readability-ConditionalToStdMinMax
+==================================
+
+Replaces certain conditional statements with equivalent std::min or std::max 
expressions, 
+improving readability and promoting the use of standard library functions.
+
----------------
PiotrZSL wrote:

Add info that this may not be best in performance critical code, as using x = 
std::min/max may cause additional store that would not happen when if is used, 
as in such case store would happen only when value need to be changed.

https://github.com/llvm/llvm-project/pull/77816
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to