changed include guard for missing ostream to include g++ 2.96 (had been

set for 2.95 and lower)


[SVN r10298]
This commit is contained in:
Jeremy Siek
2001-06-08 17:47:29 +00:00
parent 1ee4d8ac0d
commit c21dc776d1

View File

@@ -24,7 +24,7 @@
#include <exception> // for exception, bad_exception
#include <stdexcept> // for std exception hierarchy
#include <boost/cstdlib.hpp> // for exit codes
# if __GNUC__ != 2 || __GNUC_MINOR__ > 95
# if __GNUC__ != 2 || __GNUC_MINOR__ > 96
# include <ostream> // for ostream
# else
# include <iostream> // workaround GNU missing ostream header