Remove extra '*'s

This commit is contained in:
vitaut 2015-12-18 07:30:03 -08:00
parent 811964502d
commit 29726cefb8

View File

@ -1867,11 +1867,11 @@ class BasicFormatter : private internal::FormatterBase {
public: public:
/** /**
* \rst \rst
* Constructs a ``BasicFormatter`` object. References to the arguments and Constructs a ``BasicFormatter`` object. References to the arguments and
* the writer are stored in the formatter object so make sure they have the writer are stored in the formatter object so make sure they have
* appropriate lifetimes. appropriate lifetimes.
* \endrst \endrst
*/ */
BasicFormatter(const ArgList &args, BasicWriter<Char> &w) BasicFormatter(const ArgList &args, BasicWriter<Char> &w)
: internal::FormatterBase(args), writer_(w) {} : internal::FormatterBase(args), writer_(w) {}