blob: fdd8526d5e78075b6dfe00e7ddfddae12d0b64d9 [file] [log] [blame]
// 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
// This file provides shared constants used when capturing the values passed as
// arguments to macros of interest.
#ifndef THIRD_PARTY_CRUBIT_NULLABILITY_INFERENCE_MACRO_ARG_CAPTURE_H_
#define THIRD_PARTY_CRUBIT_NULLABILITY_INFERENCE_MACRO_ARG_CAPTURE_H_
#include "llvm/ADT/StringRef.h"
namespace clang::tidy::nullability {
constexpr llvm::StringRef ArgCaptureAbortIfFalse =
"clang_tidy_nullability_internal_abortIfFalse";
constexpr llvm::StringRef ArgCaptureAbortIfEqual =
"clang_tidy_nullability_internal_abortIfEqual";
} // namespace clang::tidy::nullability
#endif // THIRD_PARTY_CRUBIT_NULLABILITY_INFERENCE_MACRO_ARG_CAPTURE_H_