From 60ee9a7e0538446264de43812e40c3b83a182241 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Sun, 7 Jun 2026 08:11:43 +0200 Subject: [PATCH] [locale.numpunct.byname] Fix indentation --- source/text.tex | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/text.tex b/source/text.tex index 0a2d84e64a..ba0188ad36 100644 --- a/source/text.tex +++ b/source/text.tex @@ -3333,18 +3333,18 @@ \begin{codeblock} namespace std { template - class numpunct_byname : public numpunct { - // this class is specialized for \tcode{char} and \keyword{wchar_t}. - public: - using @\libmember{char_type}{numpunct_byname}@ = charT; - using @\libmember{string_type}{numpunct_byname}@ = basic_string; + class numpunct_byname : public numpunct { + // this class is specialized for \tcode{char} and \keyword{wchar_t}. + public: + using @\libmember{char_type}{numpunct_byname}@ = charT; + using @\libmember{string_type}{numpunct_byname}@ = basic_string; - explicit numpunct_byname(const char*, size_t refs = 0); - explicit numpunct_byname(const string&, size_t refs = 0); + explicit numpunct_byname(const char*, size_t refs = 0); + explicit numpunct_byname(const string&, size_t refs = 0); - protected: - ~numpunct_byname(); - }; + protected: + ~numpunct_byname(); + }; } \end{codeblock}