From 944d9dd96a0f308fdf148b9bbc996a2378b8ba38 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Fri, 5 Jun 2026 07:51:18 +0200 Subject: [PATCH] [locale.numpunct.general] Fix indentation --- source/text.tex | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/source/text.tex b/source/text.tex index 598ade7268..0a2d84e64a 100644 --- a/source/text.tex +++ b/source/text.tex @@ -3112,29 +3112,29 @@ \begin{codeblock} namespace std { template - class numpunct : public locale::facet { - public: - using @\libmember{char_type}{numpunct}@ = charT; - using @\libmember{string_type}{numpunct}@ = basic_string; + class numpunct : public locale::facet { + public: + using @\libmember{char_type}{numpunct}@ = charT; + using @\libmember{string_type}{numpunct}@ = basic_string; - explicit numpunct(size_t refs = 0); + explicit numpunct(size_t refs = 0); - char_type decimal_point() const; - char_type thousands_sep() const; - string grouping() const; - string_type truename() const; - string_type falsename() const; + char_type decimal_point() const; + char_type thousands_sep() const; + string grouping() const; + string_type truename() const; + string_type falsename() const; - static locale::id @\libmember{id}{numpunct}@; + static locale::id @\libmember{id}{numpunct}@; - protected: - ~numpunct(); // virtual - virtual char_type do_decimal_point() const; - virtual char_type do_thousands_sep() const; - virtual string do_grouping() const; - virtual string_type do_truename() const; // for \tcode{bool} - virtual string_type do_falsename() const; // for \tcode{bool} - }; + protected: + ~numpunct(); // virtual + virtual char_type do_decimal_point() const; + virtual char_type do_thousands_sep() const; + virtual string do_grouping() const; + virtual string_type do_truename() const; // for \tcode{bool} + virtual string_type do_falsename() const; // for \tcode{bool} + }; } \end{codeblock}