From 565e2882d3e84ff7aa37485ec85cd19af9fbd51c Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Thu, 27 Dec 2012 18:47:15 +0000 Subject: [PATCH] Add missing signature to doc (refs #7831) [SVN r82220] --- doc/lexical_cast.qbk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/lexical_cast.qbk b/doc/lexical_cast.qbk index 3d0e319..6fba038 100644 --- a/doc/lexical_cast.qbk +++ b/doc/lexical_cast.qbk @@ -94,8 +94,12 @@ Library features defined in [@boost:boost/lexical_cast.hpp boost/lexical_cast.hp namespace boost { class bad_lexical_cast; + template Target lexical_cast(const Source& arg); + + template + Target lexical_cast(const AnyCharacterType* chars, std::size_t count); } ``