Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r65368 - sandbox/gil/boost/gil/extension/io2
From: dsaritz_at_[hidden]
Date: 2010-09-09 18:13:12


Author: psiha
Date: 2010-09-09 18:13:10 EDT (Thu, 09 Sep 2010)
New Revision: 65368
URL: http://svn.boost.org/trac/boost/changeset/65368

Log:
Minor refactoring.
Text files modified:
   sandbox/gil/boost/gil/extension/io2/wic_image.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/gil/boost/gil/extension/io2/wic_image.hpp
==============================================================================
--- sandbox/gil/boost/gil/extension/io2/wic_image.hpp (original)
+++ sandbox/gil/boost/gil/extension/io2/wic_image.hpp 2010-09-09 18:13:10 EDT (Thu, 09 Sep 2010)
@@ -319,7 +319,7 @@
         //CComQIPtr<IWICPixelFormatInfo> p_pixel_format_info;
         //p_component_info->QueryInterface( );(IID_IWICPixelFormatInfo
         CComQIPtr<IWICPixelFormatInfo> const p_pixel_format_info( p_component_info );
- io_error_if( !p_pixel_format_info, "WIC failure" );
+ io_error_if_not( p_pixel_format_info, "WIC failure" );
         unsigned int bits_per_pixel;
         verify_result( p_pixel_format_info->GetBitsPerPixel( &bits_per_pixel ) );
         return bits_per_pixel;


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