blob: 22a1570fc364e5bda2406be13a2d870d9c689e4d [file] [log] [blame] [edit]
// Part of the Crubit project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef THIRD_PARTY_CRUBIT_NULLABILITY_INFERENCE_USR_CACHE_H_
#define THIRD_PARTY_CRUBIT_NULLABILITY_INFERENCE_USR_CACHE_H_
#include <string>
#include <string_view>
#include "clang/AST/DeclBase.h"
#include "llvm/ADT/DenseMap.h"
namespace clang::tidy::nullability {
using USRCache = llvm::DenseMap<const Decl *, std::string>;
std::string_view getOrGenerateUSR(USRCache &Cache, const Decl &);
} // namespace clang::tidy::nullability
#endif // THIRD_PARTY_CRUBIT_NULLABILITY_INFERENCE_USR_CACHE_H_