fix link error (bug 1702)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9159 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2004-11-03 11:54:18 +00:00
parent 175ba51077
commit 0b423b7006
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-11-03 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* boost/format/feed_args.hpp: do not use a static string (bug 1702)
2004-04-29 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* boost/format/format_implementation.hpp:

View File

@ -34,8 +34,7 @@ namespace {
template<class Tr, class Ch> inline
void empty_buf(BOOST_IO_STD basic_ostringstream<Ch,Tr> & os) {
static const std::basic_string<Ch, Tr> emptyStr; // avoids 2 cases ( "" and L"" )
os.str(emptyStr);
os.str( std::basic_string<Ch, Tr>() );
}
template<class Ch, class Tr>

View File

@ -46,3 +46,4 @@ What's new
* Configuration/Installation:
- Fix link error with some compiler/os combinations [bug 1702]