From c26f468435b1f042d4dd72bf43beffe2af2ccd4e Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Sat, 15 Aug 2026 07:54:13 +0200 Subject: [PATCH] [ub:except.handle.handler.ctor.dtor] Add \grammarterm for function-try-block --- source/ub.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ub.tex b/source/ub.tex index 727ad0dae8..b4985a81ab 100644 --- a/source/ub.tex +++ b/source/ub.tex @@ -1995,7 +1995,7 @@ A() try : x(0 ? 1 : throw 1) { } catch (int) { std::cout << "y: " << y << std::endl; // undefined behavior, referring to non-static member \tcode{y} in - // the handler of function-try-block + // the handler of \grammarterm{function-try-block} } int x; int y = 42;