mirror of https://github.com/CGAL/cgal
BUGFIX: change internal boost namespace to boost_ to avoid ambiguities
of boost:: in internal namespace (vs ::boost::)
This commit is contained in:
parent
a618b1db81
commit
f488e75869
|
|
@ -33,9 +33,9 @@ template <class IndexedType,
|
|||
class RandomAccessContainer = std::vector<IndexedType>,
|
||||
class Comp = std::less<typename RandomAccessContainer::value_type>,
|
||||
class ID = ::boost::identity_property_map >
|
||||
class mutable_queue_with_remove : public internal::boost::mutable_queue<IndexedType,RandomAccessContainer,Comp,ID>
|
||||
class mutable_queue_with_remove : public internal::boost_::mutable_queue<IndexedType,RandomAccessContainer,Comp,ID>
|
||||
{
|
||||
typedef internal::boost::mutable_queue<IndexedType,RandomAccessContainer,Comp,ID> Base;
|
||||
typedef internal::boost_::mutable_queue<IndexedType,RandomAccessContainer,Comp,ID> Base;
|
||||
public:
|
||||
typedef typename Base::size_type size_type;
|
||||
typedef typename Base::Node Node;
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
#include <boost/config.hpp>
|
||||
|
||||
namespace CGAL { namespace internal {
|
||||
namespace boost {
|
||||
namespace boost_ {
|
||||
|
||||
/*
|
||||
* Note: array_binary_tree is a completey balanced binary tree.
|
||||
|
|
@ -185,6 +185,6 @@ struct compare_array_node {
|
|||
Compare comp;
|
||||
};
|
||||
|
||||
} } } //namespace CGAL::internal::boost
|
||||
} } } //namespace CGAL::internal::boost_
|
||||
|
||||
#endif /* CGAL_INTERNAL_ARRAY_BINARY_TREE_HPP */
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
|
||||
namespace CGAL{ namespace internal {
|
||||
|
||||
namespace boost {
|
||||
namespace boost_ {
|
||||
|
||||
template <class TreeNode, class Compare, class ExternalData>
|
||||
inline TreeNode up_heap(TreeNode x, const Compare& comp, ExternalData& edata) {
|
||||
|
|
@ -70,5 +70,5 @@ namespace boost {
|
|||
(void)up_heap(x, comp, edata);
|
||||
}
|
||||
|
||||
} } } //namespace CGAL::internal::boost
|
||||
} } } //namespace CGAL::internal::boost_
|
||||
#endif //CGAL_INTERNAL_BOOST_MUTABLE_HEAP_H
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#include <iterator>
|
||||
|
||||
namespace CGAL { namespace internal {
|
||||
namespace boost {
|
||||
namespace boost_ {
|
||||
|
||||
// The mutable queue whose elements are indexed
|
||||
//
|
||||
|
|
@ -149,5 +149,5 @@ namespace boost {
|
|||
};
|
||||
|
||||
|
||||
} } } //namespace CGAL::internal::boost
|
||||
} } } //namespace CGAL::internal::boost_
|
||||
#endif // CGAL_INTERNAL_BOOST_MUTABLE_QUEUE_HPP
|
||||
|
|
|
|||
Loading…
Reference in New Issue