================ @@ -0,0 +1,110 @@ +//===----------------------------------------------------------------------===// +// +// 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 "UseStdEraseCheck.h" +#include "../utils/Matchers.h" +#include "clang/Lex/Lexer.h" + +using namespace clang::ast_matchers; + +namespace clang::tidy::modernize { + +constexpr std::array<llvm::StringRef, 2> EraseEndMethodNames = {"end", "cend"}; +constexpr std::array<llvm::StringRef, 2> EraseEndFreeNames = {"end", "cend"}; ---------------- vbvictor wrote:
Is it reasoable to have 2 identical arrays? Will it be extended in the future to contain different values? https://github.com/llvm/llvm-project/pull/193407 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
