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}