================
@@ -0,0 +1,101 @@
+//===----------------------------------------------------------------------===//
+//
+// 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 "UseAsConstCheck.h"
+#include "clang/AST/ASTContext.h"
+#include "clang/ASTMatchers/ASTMatchFinder.h"
+#include "clang/Lex/Lexer.h"
+
+using namespace clang::ast_matchers;
+
+namespace clang::tidy::modernize {
+
+namespace {
+
+AST_MATCHER(Expr, isLValueExpr) { return Node.isLValue(); }
+
+AST_MATCHER_P(ExplicitCastExpr, hasSourceExpressionAsWritten,
+              ast_matchers::internal::Matcher<Expr>, InnerMatcher) {
+  const Expr *Sub = Node.getSubExprAsWritten();
+  return Sub != nullptr && InnerMatcher.matches(*Sub, Finder, Builder);
+}
+
+AST_MATCHER(ExplicitCastExpr, addsOnlyConst) {
+  const auto *Ref = Node.getTypeAsWritten()->getAs<LValueReferenceType>();
+  if (Ref == nullptr)
+    return false;
+  const Expr *Sub = Node.getSubExprAsWritten();
+  return Sub != nullptr &&
----------------
zwuis wrote:

Ditto

https://github.com/llvm/llvm-project/pull/210554
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to