Никакой доступный конструктор копии или конструктор копии не объявляются 'явные'

Мог кто-то объяснять, почему я получаю ошибку компиляции здесь - ошибка C2558: класс 'станд.:: auto_ptr <_Ty>': никакой доступный конструктор копии или конструктор копии не объявляются 'явные'

#include <memory>
#include <vector>
#include <string>
template<typename T>
struct test
{
    typedef std::auto_ptr<T> dataptr;
    typedef std::auto_ptr< test<T> > testptr;
    test( const T& data ):
    data_( new T(data) )
    {
    };
    void add_other( const T& other )
    {
        others_.push_back( testptr( new test(other) ) );
    }
private:
    dataptr data_;
    std::vector< testptr > others_;
};

int main(int argc, char* argv[])
{
    test<std::string> g("d");

    //this is the line that causes the error.
    g.add_other("d");

    return 0;
}
5
задан Carl 6 August 2010 в 01:10
поделиться