llvm/clang-tools-extra/clang-tidy/cppcoreguidelines/NoMallocCheck.cpp

//===--- NoMallocCheck.cpp - clang-tidy------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "NoMallocCheck.h"
#include "../utils/Matchers.h"
#include "../utils/OptionsUtils.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include <algorithm>
#include <string>
#include <vector>

usingnamespaceclang::ast_matchers;
usingnamespaceclang::ast_matchers::internal;

namespace clang::tidy::cppcoreguidelines {

void NoMallocCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) {}

void NoMallocCheck::registerMatchers(MatchFinder *Finder) {}

void NoMallocCheck::check(const MatchFinder::MatchResult &Result) {}

} // namespace clang::tidy::cppcoreguidelines