Ticket #3645: iterator_facade.patch

File iterator_facade.patch, 365 bytes (added by romanp@…, 13 years ago)

Patch (qualify call to implicit_cast in iterator_facade.hpp)

  • iterator_facade.hpp

     
    323323
    324324        static type make(Reference x)
    325325        {
    326             return implicit_cast<type>(&x);
     326            return boost::implicit_cast<type>(&x);
    327327        }
    328328    };
    329329