Hi Group,
 
Any idea what should be the fix for this problem I know that the template declaration in the class shown below may be problematic
 
// ************************************************************************** //
// **************          input_iterator_core_access          ************** //
// ************************************************************************** //
 
class input_iterator_core_access
{
#if defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
public:
#else
    template <class I, class V, class R, class TC> friend class input_iterator_facade;
#endif
 
"../boost/test/utils/iterator/input_iterator_facade.hpp", line 56: Error: Multiple declaration for input_iterator_facade

Could the developers suggest how to overcome this error?
 
Thanks I appreciate
-PM-