From 3f280cb058bdf908d37b27a6101895af8aedc59e Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Thu, 18 Jan 2001 21:28:50 +0000 Subject: [PATCH] Conditions for BOOST_NO_STDC_NAMESPACE under MSVC with STLport were not quite right. [SVN r8640] --- include/boost/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config.hpp b/include/boost/config.hpp index a6918833..b6aa0ffb 100644 --- a/include/boost/config.hpp +++ b/include/boost/config.hpp @@ -381,7 +381,7 @@ // Determine if the standard library implementation is already pulling names // into std. STLport defines the following if so. (Ed Brey 5 Jun 00) -# ifndef __STL_IMPORT_VENDOR_CSTD +# if !defined( __STL_IMPORT_VENDOR_CSTD ) || defined( __STL_NO_CSTD_FUNCTION_IMPORTS ) # define BOOST_NO_STDC_NAMESPACE # endif