Can someone give me please a hint for this error:
no viable conversion from 'std::shared_ptr<Foo>' to 'std::__1::shared_ptr<Foo> *'
The QCache looks like this:
QCache<int, std::shared_ptr<Foo>> cache;
And I try to insert the element like this:
std::shared_ptr<Foo> foo;
cache.insert(23, foo);
Thanks for your help.