Path: blob/main/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
35294 views
//==--- InterCheckerAPI.h ---------------------------------------*- C++ -*-==//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7// This file allows introduction of checker dependencies. It contains APIs for8// inter-checker communications.9//===----------------------------------------------------------------------===//1011#ifndef LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_INTERCHECKERAPI_H12#define LLVM_CLANG_LIB_STATICANALYZER_CHECKERS_INTERCHECKERAPI_H1314// FIXME: This file goes against how a checker should be implemented either in15// a single file, or be exposed in a header file. Let's try to get rid of it!1617namespace clang {18namespace ento {1920class CheckerManager;2122/// Register the part of MallocChecker connected to InnerPointerChecker.23void registerInnerPointerCheckerAux(CheckerManager &Mgr);2425} // namespace ento26} // namespace clang2728#endif /* INTERCHECKERAPI_H_ */293031