mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 16:50:39 +00:00
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:
parent
175ba51077
commit
0b423b7006
@ -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:
|
||||
|
@ -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>
|
||||
|
@ -46,3 +46,4 @@ What's new
|
||||
|
||||
* Configuration/Installation:
|
||||
|
||||
- Fix link error with some compiler/os combinations [bug 1702]
|
||||
|
Loading…
Reference in New Issue
Block a user