utility.hpp 497 B

12345678910111213141516171819
  1. //
  2. // Copyright 2005-2007 Adobe Systems Incorporated
  3. //
  4. // Distributed under the Boost Software License, Version 1.0
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. //
  8. #ifndef BOOST_GIL_CONCEPTS_DETAIL_UTILITY_HPP
  9. #define BOOST_GIL_CONCEPTS_DETAIL_UTILITY_HPP
  10. namespace boost { namespace gil { namespace detail {
  11. // TODO: Remove, replace with ignore_unised?
  12. template <typename T>
  13. void initialize_it(T&) {}
  14. }}} // namespace boost::gil::detail
  15. #endif