Remove clang workaround.

Clang from llvm 2.8 doesn't need it. Clang form llvm 2.7 isn't
supported.

[SVN r66556]
This commit is contained in:
Daniel James
2010-11-13 12:30:45 +00:00
parent a49c76c69c
commit 2c1a8894cb

View File

@ -661,18 +661,6 @@ namespace boost { namespace unordered_detail {
// iterator_access is used to access the internal iterator without
// making it publicly available.
#if !defined(__clang__)
class iterator_access
{
public:
template <class Iterator>
static BOOST_DEDUCED_TYPENAME Iterator::base const&
get(Iterator const& it)
{
return it.base_;
}
};
#else
class iterator_access
{
public:
@ -693,8 +681,6 @@ namespace boost { namespace unordered_detail {
return it.base_;
}
};
#endif
template <class A, class G> class hash_iterator;
template <class A, class G> class hash_const_iterator;