Ticket #1462: boost.pending.diff

File boost.pending.diff, 1.8 KB (added by Jens Seidel <jensseidel@…>, 15 years ago)
  • pending/container_traits.hpp

     
    1111// is not legal. There ought to be a standard <stlfwd> header. -JGS
    1212
    1313#include <boost/next_prior.hpp>
     14#include <boost/detail/workaround.hpp> // BOOST_WORKAROUND
    1415
    1516#include <algorithm>   // for std::remove
    1617#include <vector>
     
    2223#  ifdef BOOST_HASH_SET_HEADER
    2324#    include BOOST_HASH_SET_HEADER
    2425#  else
    25 #    include <hash_set>
     26#    include <ext/hash_set>
    2627#  endif
    2728#  ifdef BOOST_HASH_MAP_HEADER
    2829#    include BOOST_HASH_MAP_HEADER
    2930#  else
    30 #    include <hash_map>
     31#    include <ext/hash_map>
    3132#  endif
    3233#endif
    3334
     
    3536#  ifdef BOOST_SLIST_HEADER
    3637#    include BOOST_SLIST_HEADER
    3738#  else
    38 #    include <slist>
     39#    include <ext/slist>
    3940#  endif
    4041#endif
    4142
  • pending/iterator_tests.hpp

     
    2222# include <iterator>
    2323# include <assert.h>
    2424# include <boost/type_traits.hpp>
     25# include <boost/detail/iterator.hpp> // for boost::detail::iterator_traits
    2526# include <boost/static_assert.hpp>
    2627# include <boost/concept_archetype.hpp> // for detail::dummy_constructor
    2728# include <boost/implicit_cast.hpp>
  • pending/mutable_heap.hpp

     
    1111#ifndef BOOST_GRAPH_DETAIL_MUTABLE_HEAP_H
    1212#define BOOST_GRAPH_DETAIL_MUTABLE_HEAP_H
    1313
     14#include <algorithm> // min_element
     15
    1416/*
    1517  There are a few things wrong with this set of functions.
    1618