================
@@ -41,8 +42,213 @@ static CharSourceRange rangeFromAnnotations(const 
llvm::Annotations &A,
   return CharSourceRange::getCharRange(Begin, End);
 }
 
+static bool isRawIdentifierNamed(const Token &Tok, StringRef Name) {
+  return Tok.is(tok::raw_identifier) && Tok.getRawIdentifier() == Name;
+}
+
+static const CXXConstructorDecl *
+findFirstNonImplicitConstructor(const ASTContext &Context) {
----------------
unterumarmung wrote:

Done

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

Reply via email to