mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Use the correct nullstream.hpp.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13301 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0226612481
commit
aa9da47369
@ -1,3 +1,9 @@
|
||||
2006-03-05 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* pch.h:
|
||||
* support/pch.h:
|
||||
* support/debugstream.h: Use the correct nullstream.
|
||||
|
||||
2006-02-26 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
||||
|
||||
* text3.C (mathDispatch): fix math inset creation from string (bug 2315)
|
||||
|
@ -17,7 +17,14 @@
|
||||
#include <boost/signals/connection.hpp>
|
||||
#include <boost/signal.hpp>
|
||||
#include <boost/signals/trackable.hpp>
|
||||
#include <boost/test/detail/nullstream.hpp>
|
||||
#include <boost/version.hpp>
|
||||
|
||||
#if BOOST_VERSION < 103301
|
||||
# include <boost/test/detail/nullstream.hpp>
|
||||
#else
|
||||
# include <boost/test/utils/nullstream.hpp>
|
||||
#endif
|
||||
|
||||
#include <boost/tokenizer.hpp>
|
||||
#include <boost/tuple/tuple.hpp>
|
||||
#include <boost/utility.hpp>
|
||||
|
@ -14,7 +14,13 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#include <boost/test/detail/nullstream.hpp>
|
||||
#include <boost/version.hpp>
|
||||
|
||||
#if BOOST_VERSION < 103301
|
||||
# include <boost/test/detail/nullstream.hpp>
|
||||
#else
|
||||
# include <boost/test/utils/nullstream.hpp>
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG
|
||||
# define TEMPORARY_DEBUG_MACRO DEBUG
|
||||
|
@ -10,7 +10,14 @@
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <boost/signal.hpp>
|
||||
#include <boost/signals/trackable.hpp>
|
||||
#include <boost/test/detail/nullstream.hpp>
|
||||
#include <boost/version.hpp>
|
||||
|
||||
#if BOOST_VERSION < 103301
|
||||
# include <boost/test/detail/nullstream.hpp>
|
||||
#else
|
||||
# include <boost/test/utils/nullstream.hpp>
|
||||
#endif
|
||||
|
||||
#include <boost/tokenizer.hpp>
|
||||
#include <boost/utility.hpp>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user