Author: Amitoj Kaur Chawla <amitoj1606@gmail.com> Replace min_t/max_t with min/max when both variables are of the same type. The Coccinelle semantic patch used to make this change is as follows: @@ type T; T a,b; @@ – min_t(T, a, b) + min(a, b) @@ type T; T a,b; @@ – max_t(T, a, b) + max(a, b) …
Privacy Overview
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.