From a5b406b11f6cf73300b60c7cdc1ed07ee57c96b4 Mon Sep 17 00:00:00 2001 From: "A. Jiang" Date: Tue, 28 Jul 2026 09:53:38 +0800 Subject: [PATCH] [simd.creation] Add missing escaping to braces in `\tcode` The braces would be lost in the generated PDF without escaping. --- source/numerics.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/numerics.tex b/source/numerics.tex index e3a90bc456..f228a4ed5c 100644 --- a/source/numerics.tex +++ b/source/numerics.tex @@ -19643,7 +19643,7 @@ If \tcode{is_arithmetic_v} is \tcode{true}, the value of \tcode{iota} is equal to \tcode{T()}. Otherwise, the value of \tcode{iota} is equal to -\tcode{T([](typename T::value_type i) { return i; })}. +\tcode{T([](typename T::value_type i) \{ return i; \})}. \end{itemdescr} \rSec3[simd.alg]{Algorithms}