#include "ProperlySeededRandomGeneratorCheck.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "llvm/ADT/STLExtras.h"
usingnamespaceclang::ast_matchers;
namespace clang::tidy::cert {
ProperlySeededRandomGeneratorCheck::ProperlySeededRandomGeneratorCheck(
StringRef Name, ClangTidyContext *Context)
: … { … }
void ProperlySeededRandomGeneratorCheck::storeOptions(
ClangTidyOptions::OptionMap &Opts) { … }
void ProperlySeededRandomGeneratorCheck::registerMatchers(MatchFinder *Finder) { … }
void ProperlySeededRandomGeneratorCheck::check(
const MatchFinder::MatchResult &Result) { … }
template <class T>
void ProperlySeededRandomGeneratorCheck::checkSeed(
const MatchFinder::MatchResult &Result, const T *Func) { … }
}