[EMAIL PROTECTED] wrote:
> URL: http://www.lyx.org/trac/changeset/14983
> Log:
> Compile fix for the case when USE_BOOST_FORMAT is 0
>       * src/support/lstrings.C
>       (bformat): Add missing lyx::from_ascii()

Does this not work:

 template<>  
 docstring convert<docstring>(unsigned int ui)  
 {  
-       return lyx::from_ascii(lexical_cast<string>(ui));  
+       return lexical_cast<docstring>(ui);  
 }

?

Angus

Reply via email to