From b5b3243bf783f07415c5e2838fa1a948e126f643 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Mon, 22 Feb 2021 11:07:03 +0000 Subject: [PATCH] Regenerate documentation --- clang/docs/LibASTMatchersReference.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html index a956091318a1..0becf5ebfb8c 100644 --- a/clang/docs/LibASTMatchersReference.html +++ b/clang/docs/LibASTMatchersReference.html @@ -7152,7 +7152,8 @@ void foo() f = 42; } The matcher: - decompositionDecl(hasBinding(0, bindingDecl(hasName("f").bind("fBinding")))) + decompositionDecl(hasBinding(0, + bindingDecl(hasName("f").bind("fBinding")))) matches the decomposition decl with 'f' bound to "fBinding".