[PATCH] D69560: [clang-tidy] Add 'experimental-cppcoreguidelines-avoid-adjacent-arguments-of-the-same-type' check
Whisperity via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Apr 22 10:20:00 PDT 2020
whisperity marked an inline comment as done.
whisperity added inline comments.
================
Comment at: clang-tools-extra/docs/clang-tidy/checks/experimental-cppcoreguidelines-avoid-adjacent-parameters-of-the-same-type.rst:136-139
+ typedef T element_type;
+ typedef const T const_element_type;
+ typedef T & reference_type;
+ typedef const T & const_reference_type;
----------------
Why are these typos still here, `typedef`??? instead of `typename`.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69560/new/
https://reviews.llvm.org/D69560
More information about the cfe-commits
mailing list