Opened 10 years ago

Closed 10 years ago

#7831 closed Bugs (fixed)

[lexical_cast] missing signature in doc

Reported by: Akira Takahashi <faithandbrave@…> Owned by: Antony Polukhin
Milestone: To Be Determined Component: lexical_cast
Version: Boost 1.52.0 Severity: Problem
Keywords: Cc:

Description

http://www.boost.org/doc/libs/1_52_0/doc/html/boost_lexical_cast/synopsis.html#boost_lexical_cast.synopsis.lexical_cast

now lexical_cast.hpp's sigunature:

namespace boost
{
    class bad_lexical_cast;
    template<typename Target, typename Source>
      Target lexical_cast(const Source& arg);
}

But, Boost 1.52.0 has N characters version. should be:

namespace boost
{
    class bad_lexical_cast;
    template<typename Target, typename Source>
      Target lexical_cast(const Source& arg);
    template <typename Target>
      Target lexical_cast(const AnyCharacterType* chars, std::size_t count);
}

Change History (2)

comment:1 by Antony Polukhin, 10 years ago

(In [82220]) Add missing signature to doc (refs #7831)

comment:2 by Antony Polukhin, 10 years ago

Resolution: fixed
Status: newclosed

(In [82224]) Merge from trunk

  • Fixes #7799 (optimizations with std::array were not used)
  • Fixes #7831 (documentation update)
Note: See TracTickets for help on using tickets.