Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r65226 - sandbox/gil/boost/gil/extension/io2/detail
From: dsaritz_at_[hidden]
Date: 2010-09-03 17:23:49


Author: psiha
Date: 2010-09-03 17:23:44 EDT (Fri, 03 Sep 2010)
New Revision: 65226
URL: http://svn.boost.org/trac/boost/changeset/65226

Log:
Added a workaround for the (MSVC++ 10.0) stdint.h and (Windows 7) intsafe.h collision warnings.
Text files modified:
   sandbox/gil/boost/gil/extension/io2/detail/wic_extern_lib_guard.hpp | 3 +++
   1 files changed, 3 insertions(+), 0 deletions(-)

Modified: sandbox/gil/boost/gil/extension/io2/detail/wic_extern_lib_guard.hpp
==============================================================================
--- sandbox/gil/boost/gil/extension/io2/detail/wic_extern_lib_guard.hpp (original)
+++ sandbox/gil/boost/gil/extension/io2/detail/wic_extern_lib_guard.hpp 2010-09-03 17:23:44 EDT (Fri, 03 Sep 2010)
@@ -23,6 +23,9 @@
 
 #define ATLENSURE ATLVERIFY
 #include "atlcomcli.h"
+#if defined( _STDINT ) && !defined( _INTSAFE_H_INCLUDED_ )
+ #define _INTSAFE_H_INCLUDED_
+#endif
 #include "wincodec.h"
 //------------------------------------------------------------------------------
 namespace boost


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk