From 9c830a868b716ab5ad1f0af73162bc6d45cd1643 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Sat, 5 Sep 2026 07:47:58 +0200 Subject: [PATCH] [class.virtual] Add \grammarterm for using-declaration --- source/classes.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/classes.tex b/source/classes.tex index 56eadd3be1..1c9bed03ca 100644 --- a/source/classes.tex +++ b/source/classes.tex @@ -3820,7 +3820,7 @@ void foo() { C c; c.f(); // calls \tcode{B::f}, the final overrider - c.C::f(); // calls \tcode{A::f} because of the using-declaration + c.C::f(); // calls \tcode{A::f} because of the \grammarterm{using-declaration} } \end{codeblock} \end{example}