[PATCH] D30158: [clang-tidy] modernize: Find usage of random_shuffle and replace it with shuffle.

Malcolm Parsons via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Feb 24 02:03:46 PST 2017


malcolm.parsons added inline comments.


================
Comment at: clang-tidy/modernize/ReplaceRandomShuffleCheck.h:21
+/// std::random_shuffle will be removed as of C++17. This check will find and
+/// replace all occurences of std::random_shuffle with std::shuffle.
+///
----------------
Typo - should be occurrences.
Same in 2 other places.


https://reviews.llvm.org/D30158





More information about the cfe-commits mailing list