スポンサーリンク

このドキュメントの内容は、以下の通りです。

ソース


shared_ptr の reset を使おうとしたらエラーになってコンパイルできなかった。

boost::shared_ptr<X> x (  new X() );
x_.reset (x);

コンパイルエラー


g++ の結果。

g++ shared_ptr_class.cpp -I/usr/local/include
shared_ptr_class.cpp: In constructor 'C::C()':
shared_ptr_class.cpp:30: error: no matching function for call to 'boost::shared_ptr<X>::reset(boost::shared_ptr<X>&) const'
/usr/local/include/boost/smart_ptr/shared_ptr.hpp:390: note: candidates are: void boost::shared_ptr<T>::reset() [with T = X]
gmake: *** [shared_ptr_class_gpp] エラー 1

clang++ の結果。

/usr/bin/clang++ shared_ptr_class.cpp -I/usr/local/include
shared_ptr_class.cpp:30:7: error: no matching member function for call to 'reset'
                        x_.reset (x);
                        ~~~^~~~~
/usr/local/include/boost/smart_ptr/shared_ptr.hpp:395:28: note: candidate template ignored: failed template argument deduction
    template<class Y> void reset(Y * p) // Y must be complete
                           ^
/usr/local/include/boost/smart_ptr/shared_ptr.hpp:401:37: note: candidate function template not viable: requires 2 arguments, but 1 was provided
    template<class Y, class D> void reset( Y * p, D d )
                                    ^
/usr/local/include/boost/smart_ptr/shared_ptr.hpp:406:46: note: candidate function template not viable: requires 3 arguments, but 1 was provided
    template<class Y, class D, class A> void reset( Y * p, D d, A a )
                                             ^
/usr/local/include/boost/smart_ptr/shared_ptr.hpp:411:28: note: candidate function template not viable: requires 2 arguments, but 1 was provided
    template<class Y> void reset( shared_ptr<Y> const & r, T * p )
                           ^
/usr/local/include/boost/smart_ptr/shared_ptr.hpp:390:10: note: candidate function not viable: requires 0 arguments, but 1 was provided
    void reset() // never throws in 1.30+
         ^
1 error generated.
gmake: *** [shared_ptr_class] エラー 1

スポンサーリンク
スポンサーリンク
 
いつもシェア、ありがとうございます!


もっと情報を探しませんか?

関連記事

最近の記事

人気のページ

スポンサーリンク
 

過去ログ

2020 : 01 02 03 04 05 06 07 08 09 10 11 12
2019 : 01 02 03 04 05 06 07 08 09 10 11 12
2018 : 01 02 03 04 05 06 07 08 09 10 11 12
2017 : 01 02 03 04 05 06 07 08 09 10 11 12
2016 : 01 02 03 04 05 06 07 08 09 10 11 12
2015 : 01 02 03 04 05 06 07 08 09 10 11 12
2014 : 01 02 03 04 05 06 07 08 09 10 11 12
2013 : 01 02 03 04 05 06 07 08 09 10 11 12
2012 : 01 02 03 04 05 06 07 08 09 10 11 12
2011 : 01 02 03 04 05 06 07 08 09 10 11 12
2010 : 01 02 03 04 05 06 07 08 09 10 11 12
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
2004 : 01 02 03 04 05 06 07 08 09 10 11 12
2003 : 01 02 03 04 05 06 07 08 09 10 11 12

サイト

Vim入門

C言語入門

C++入門

JavaScript/Node.js入門

Python入門

FreeBSD入門

Ubuntu入門

セキュリティ入門

パソコン自作入門

ブログ

トップ


プライバシーポリシー