Removed an instance of metafunction forwarding for Borland 5.x

[SVN r26489]
This commit is contained in:
Jonathan Turkanis
2004-12-13 04:58:28 +00:00
parent fd06013885
commit fa65f4e34c

View File

@ -130,8 +130,10 @@ template<typename Allocator>
struct rebinder
{
template<typename Type>
struct result:Allocator::BOOST_NESTED_TEMPLATE rebind<Type>
struct result
{
typedef typename Allocator::BOOST_NESTED_TEMPLATE
rebind<Type>::other other;
};
};
#endif