================ @@ -170,3 +170,20 @@ Options If `true` (default value) the boost headers are included as system headers with angle brackets (`#include <boost.hpp>`), otherwise quotes are used (`#include "boost.hpp"`). + +.. option:: UseReversePipe + + When `true` (default `false`), Fixes which involve reverse ranges will use the + pipe adaptor syntax instead of the function syntax + + .. code-block:: c++ + + std::find(Items.rbegin(), Items.rend(), 0); + + Transforms to: + + .. code-block:: c++ + + boost::range::find(Items | boost::adaptors::reversed, 0); + ---------------- EugeneZelenko wrote:
Excessive newlines. https://github.com/llvm/llvm-project/pull/98696 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits