From 45e058f2c5049f13b72dad0c4152c440ac2f4b25 Mon Sep 17 00:00:00 2001 From: Tim Blechmann Date: Tue, 23 Jul 2013 13:53:52 +0200 Subject: [PATCH] format: fix documentation convert string_t to string_type to match with implementation --- libs/format/doc/format.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/format/doc/format.html b/libs/format/doc/format.html index ca30364..ffae8f4 100644 --- a/libs/format/doc/format.html +++ b/libs/format/doc/format.html @@ -931,18 +931,18 @@ template<class charT, class Traits=std::char_traits<charT> > class basic_format { public: - typedef std::basic_string<charT, Traits> string_t; - typedef typename string_t::size_type size_type; + typedef std::basic_string<charT, Traits> string_type; + typedef typename string_type::size_type size_type; basic_format(const charT* str); basic_format(const charT* str, const std::locale & loc); - basic_format(const string_t& s); - basic_format(const string_t& s, const std::locale & loc); + basic_format(const string_type& s); + basic_format(const string_type& s, const std::locale & loc); basic_format& operator= (const basic_format& x); void clear(); // reset buffers - basic_format& parse(const string_t&); // clears and parse a new format string + basic_format& parse(const string_type&); // clears and parse a new format string - string_t str() const; + string_type str() const; size_type size() const; // pass arguments through those operators : -- 1.8.3.1