Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82774 - in trunk/boost/gil/extension/toolbox: color_spaces metafunctions
From: chhenning_at_[hidden]
Date: 2013-02-07 11:43:35


Author: chhenning
Date: 2013-02-07 11:43:32 EST (Thu, 07 Feb 2013)
New Revision: 82774
URL: http://svn.boost.org/trac/boost/changeset/82774

Log:
Fixed compiler errors for gcc and clang.
Text files modified:
   trunk/boost/gil/extension/toolbox/color_spaces/cmyka.hpp | 8 ++++----
   trunk/boost/gil/extension/toolbox/metafunctions/channel_view.hpp | 8 ++++----
   2 files changed, 8 insertions(+), 8 deletions(-)

Modified: trunk/boost/gil/extension/toolbox/color_spaces/cmyka.hpp
==============================================================================
--- trunk/boost/gil/extension/toolbox/color_spaces/cmyka.hpp (original)
+++ trunk/boost/gil/extension/toolbox/color_spaces/cmyka.hpp 2013-02-07 11:43:32 EST (Thu, 07 Feb 2013)
@@ -19,11 +19,11 @@
 ///
 ////////////////////////////////////////////////////////////////////////////////////////
 
-#include <boost\gil\rgba.hpp>
-#include <boost\gil\cmyk.hpp>
+#include <boost/gil/rgba.hpp>
+#include <boost/gil/cmyk.hpp>
 
-#include <boost\gil\color_convert.hpp>
-#include <boost\gil\typedefs.hpp>
+#include <boost/gil/color_convert.hpp>
+#include <boost/gil/typedefs.hpp>
 
 namespace boost{ namespace gil {
 

Modified: trunk/boost/gil/extension/toolbox/metafunctions/channel_view.hpp
==============================================================================
--- trunk/boost/gil/extension/toolbox/metafunctions/channel_view.hpp (original)
+++ trunk/boost/gil/extension/toolbox/metafunctions/channel_view.hpp 2013-02-07 11:43:32 EST (Thu, 07 Feb 2013)
@@ -19,7 +19,7 @@
 ///
 ////////////////////////////////////////////////////////////////////////////////////////
 
-#include <boost/gil/gil_all.hpp>
+#include <boost/gil/image_view_factory.hpp>
 
 namespace boost {
 namespace gil {
@@ -29,9 +29,9 @@
>
 struct channel_type_to_index
 {
- static const int value = gil::detail::type_to_index< typename color_space_type< View >::type // color (mpl::vector)
- , Channel // channel type
- >::type::value; //< index of the channel in the color (mpl::vector)
+ static const int value = detail::type_to_index< typename color_space_type< View >::type // color (mpl::vector)
+ , Channel // channel type
+ >::type::value; //< index of the channel in the color (mpl::vector)
 };
 
 template< typename Channel


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