From c21dc776d1744b57f7720b8ddae222e95369858a Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Fri, 8 Jun 2001 17:47:29 +0000 Subject: [PATCH] changed include guard for missing ostream to include g++ 2.96 (had been set for 2.95 and lower) [SVN r10298] --- include/boost/detail/catch_exceptions.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/detail/catch_exceptions.hpp b/include/boost/detail/catch_exceptions.hpp index a7e79a3..0a9aa5e 100644 --- a/include/boost/detail/catch_exceptions.hpp +++ b/include/boost/detail/catch_exceptions.hpp @@ -24,7 +24,7 @@ #include // for exception, bad_exception #include // for std exception hierarchy #include // for exit codes -# if __GNUC__ != 2 || __GNUC_MINOR__ > 95 +# if __GNUC__ != 2 || __GNUC_MINOR__ > 96 # include // for ostream # else # include // workaround GNU missing ostream header