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 c9283d65 [clang-tidy] Fix http://llvm.org/PR38055 new dc9591ac Add the cert-msc51-cpp and cert-msc32-c checks.
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 | 5 + clang-tidy/cert/CMakeLists.txt | 1 + .../cert/ProperlySeededRandomGeneratorCheck.cpp | 124 ++++++++++++ .../cert/ProperlySeededRandomGeneratorCheck.h | 47 +++++ docs/ReleaseNotes.rst | 11 ++ docs/clang-tidy/checks/cert-msc32-c.rst | 9 + test/clang-tidy/cert-msc32-c.c | 27 +++ test/clang-tidy/cert-msc51-cpp.cpp | 210 +++++++++++++++++++++ 8 files changed, 434 insertions(+) create mode 100644 clang-tidy/cert/ProperlySeededRandomGeneratorCheck.cpp create mode 100644 clang-tidy/cert/ProperlySeededRandomGeneratorCheck.h create mode 100644 docs/clang-tidy/checks/cert-msc32-c.rst create mode 100644 test/clang-tidy/cert-msc32-c.c create mode 100644 test/clang-tidy/cert-msc51-cpp.cpp