This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from c9bdecf [Documentation] Clang-tidy readability-redundant-declaration [...] new 7b7f5ca Add a new clang-tidy check for cert-msc50-cpp (and cert-msc30 [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clang-tidy/cert/CERTTidyModule.cpp | 7 +++++ clang-tidy/cert/CMakeLists.txt | 1 + clang-tidy/cert/LimitedRandomnessCheck.cpp | 40 +++++++++++++++++++++++++++++ clang-tidy/cert/LimitedRandomnessCheck.h | 38 +++++++++++++++++++++++++++ docs/clang-tidy/checks/cert-msc30-c.rst | 7 +++++ docs/clang-tidy/checks/cert-msc50-cpp.rst | 6 +++++ docs/clang-tidy/checks/list.rst | 2 ++ test/clang-tidy/cert-limited-randomness.c | 13 ++++++++++ test/clang-tidy/cert-limited-randomness.cpp | 28 ++++++++++++++++++++ 9 files changed, 142 insertions(+) create mode 100644 clang-tidy/cert/LimitedRandomnessCheck.cpp create mode 100644 clang-tidy/cert/LimitedRandomnessCheck.h create mode 100644 docs/clang-tidy/checks/cert-msc30-c.rst create mode 100644 docs/clang-tidy/checks/cert-msc50-cpp.rst create mode 100644 test/clang-tidy/cert-limited-randomness.c create mode 100644 test/clang-tidy/cert-limited-randomness.cpp