Ticket #2993: addressof.hpp.patch

File addressof.hpp.patch, 391 bytes (added by Eric Niebler, 13 years ago)

patch to eliminate noisy warning on VC++

  • addressof.hpp

     
    2727
    2828    inline addr_impl_ref( T & v ): v_( v ) {}
    2929    inline operator T& () const { return v_; }
     30
     31private:
     32    addr_impl_ref & operator=(const addr_impl_ref &);
    3033};
    3134
    3235template<class T> struct addressof_impl