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:
Lars Gullik Bjønnes 2006-03-05 20:49:09 +00:00
parent 0226612481
commit aa9da47369
4 changed files with 29 additions and 3 deletions

View File

@ -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)

View File

@ -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>

View File

@ -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

View File

@ -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>