From 86fdd6b8b70962d66bb2922f76e7370023e74a65 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 22 Apr 2002 21:17:42 +0000 Subject: [PATCH] Fixes for Comeau strict mode on Windows [SVN r13544] --- include/boost/config/compiler/comeau.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config/compiler/comeau.hpp b/include/boost/config/compiler/comeau.hpp index 24456461..9e727399 100644 --- a/include/boost/config/compiler/comeau.hpp +++ b/include/boost/config/compiler/comeau.hpp @@ -18,7 +18,7 @@ // Void returns don't work when emulating VC 6 (Peter Dimov) -# if defined(_MSC_VER) && (_MSC_VER <= 1200) +# if defined(_MSC_VER) && (_MSC_VER == 1200) # define BOOST_NO_VOID_RETURNS # endif