From 48c8b3e1d0ff4e359397d464286d83221ddc7e92 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Tue, 29 Oct 2019 09:39:09 +0100 Subject: [PATCH] [dcl.list.init] Make spacing around & declarator operator locally consistent. Fixes NB JP 057 (C++20 CD) --- source/declarations.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/declarations.tex b/source/declarations.tex index 721432882a..ffd9809b11 100644 --- a/source/declarations.tex +++ b/source/declarations.tex @@ -5680,7 +5680,7 @@ struct A { } a; struct B { explicit B(const A&); }; -const B &b2{a}; // error: cannot copy-list-initialize \tcode{B} temporary from \tcode{A} +const B& b2{a}; // error: cannot copy-list-initialize \tcode{B} temporary from \tcode{A} \end{codeblock} \end{example}