summaryrefslogtreecommitdiff
path: root/boost/gil/extension/toolbox/metafunctions/is_bit_aligned.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/gil/extension/toolbox/metafunctions/is_bit_aligned.hpp')
-rw-r--r--boost/gil/extension/toolbox/metafunctions/is_bit_aligned.hpp35
1 files changed, 12 insertions, 23 deletions
diff --git a/boost/gil/extension/toolbox/metafunctions/is_bit_aligned.hpp b/boost/gil/extension/toolbox/metafunctions/is_bit_aligned.hpp
index 369f8cbab5..87a7e8a8f3 100644
--- a/boost/gil/extension/toolbox/metafunctions/is_bit_aligned.hpp
+++ b/boost/gil/extension/toolbox/metafunctions/is_bit_aligned.hpp
@@ -1,24 +1,13 @@
-/*
- Copyright 2012 Christian Henning, Andreas Pokorny, Lubomir Bourdev
- Use, modification and distribution are subject to the Boost Software License,
- Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
- http://www.boost.org/LICENSE_1_0.txt).
-*/
-
-/*************************************************************************************************/
-
+//
+// Copyright 2012 Christian Henning, Andreas Pokorny, Lubomir Bourdev
+//
+// Distributed under the Boost Software License, Version 1.0
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+//
#ifndef BOOST_GIL_EXTENSION_TOOLBOX_METAFUNCTIONS_IS_BIT_ALIGNED_TYPE_HPP
#define BOOST_GIL_EXTENSION_TOOLBOX_METAFUNCTIONS_IS_BIT_ALIGNED_TYPE_HPP
-////////////////////////////////////////////////////////////////////////////////////////
-/// \file is_bit_aligned.hpp
-/// \brief is_bit_aligned metafunction.
-/// \author Christian Henning, Andreas Pokorny, Lubomir Bourdev \n
-///
-/// \date 2012 \n
-///
-////////////////////////////////////////////////////////////////////////////////////////
-
#include <boost/gil/bit_aligned_pixel_reference.hpp>
namespace boost{ namespace gil {
@@ -29,19 +18,19 @@ namespace boost{ namespace gil {
template< typename PixelRef >
struct is_bit_aligned : mpl::false_{};
-template <typename B, typename C, typename L, bool M>
+template <typename B, typename C, typename L, bool M>
struct is_bit_aligned<bit_aligned_pixel_reference<B,C,L,M> > : mpl::true_{};
-template <typename B, typename C, typename L, bool M>
+template <typename B, typename C, typename L, bool M>
struct is_bit_aligned<const bit_aligned_pixel_reference<B,C,L,M> > : mpl::true_{};
-template <typename B, typename C, typename L>
+template <typename B, typename C, typename L>
struct is_bit_aligned<packed_pixel<B,C,L> > : mpl::true_{};
-template <typename B, typename C, typename L>
+template <typename B, typename C, typename L>
struct is_bit_aligned<const packed_pixel<B,C,L> > : mpl::true_{};
} // namespace gil
} // namespace boost
-#endif // BOOST_GIL_EXTENSION_TOOLBOX_METAFUNCTIONS_IS_BIT_ALIGNED_TYPE_HPP
+#endif