Ticket #1520: boost.gil.diff

File boost.gil.diff, 3.3 KB (added by anonymous, 15 years ago)
  • gil/metafunctions.hpp

     
    3232#include <boost/mpl/push_back.hpp>
    3333#include <boost/mpl/transform.hpp>
    3434#include <boost/mpl/vector.hpp>
     35#include <boost/mpl/vector/vector20_c.hpp> // vector1_c
    3536#include <boost/type_traits.hpp>
    3637#include "gil_config.hpp"
    3738#include "gil_concept.hpp"
  • gil/deprecated.hpp

     
    1313#ifndef GIL_DEPRECATED_HPP
    1414#define GIL_DEPRECATED_HPP
    1515
     16#include <cstddef> // std::size_t
     17
    1618////////////////////////////////////////////////////////////////////////////////////////
    1719/// \file               
    1820/// \brief Deprecated names
  • gil/channel.hpp

     
    264264
    265265template <>
    266266struct static_copy_bytes<0> {
    267         void operator()(const unsigned char* from, unsigned char* to) const {}
     267        void operator()(const unsigned char* /*from*/, unsigned char* /*to*/) const {}
    268268};
    269269
    270270template <typename Derived, typename BitField, int NumBits, bool Mutable>
  • gil/device_n.hpp

     
    2323
    2424#include <cstddef>
    2525#include "gil_config.hpp"
     26#include "utilities.hpp" // layout
     27#include "metafunctions.hpp" // type_from_x_iterator
    2628#include <boost/type_traits.hpp>
    2729#include <boost/mpl/range_c.hpp>
    2830#include <boost/mpl/vector_c.hpp>
  • gil/extension/io/dynamic_io.hpp

     
    2222#include <boost/mpl/at.hpp>
    2323#include <boost/mpl/size.hpp>
    2424#include "../../gil_config.hpp"
     25#include "io_error.hpp" // io_error
    2526#include "../dynamic_image/any_image.hpp"
    2627
    2728namespace boost { namespace gil {
  • gil/extension/io/png_io_private.hpp

     
    2323#include <boost/static_assert.hpp>
    2424#include "../../gil_all.hpp"
    2525#include "io_error.hpp"
     26#include <png.h> // PNG_COLOR_TYPE_GRAY
    2627
    2728namespace boost { namespace gil {
    2829
  • gil/extension/io/jpeg_io_private.hpp

     
    2424#include <vector>
    2525#include "../../gil_all.hpp"
    2626#include "io_error.hpp"
     27#include <jpeglib.h> // JCS_UNKNOWN
    2728
    2829namespace boost { namespace gil {
    2930
  • gil/algorithm.hpp

     
    1717#include <cassert>
    1818#include <cstddef>
    1919#include <algorithm>
     20#include <typeinfo> // std::bad_cast
    2021#include <iterator>
    2122#include <memory>
    2223#include "gil_config.hpp"