これがどのテーマに該当するかがわかったら、このスレッドのタイトルをより適切なものに喜んで変更します.
エラーの原因となったコンストラクターのパラメーターを変更すると、エラーは発生しません。
このエラーは、正確なコンストラクターを含めた場合にのみ発生します。
error: no matching function for call to 'Object::Object(Object)'
note: candidates are: Object::Object(Object&)
note: Object::Object()
コード:
#include <iostream>
using namespace std;
class Object {
public:
Object() {} /* default constructor - no problems at all */
Object( Object & toCopy ) {} /* Cause of error, but no error when commented out */
Object func() {
Object obj;
return obj;
}
};
int main() {
Object o = o.func(); /* this is the line that the error is actually on */
return 0;
}