Compile error fix

This commit is contained in:
Anthony Thibault 2019-05-10 15:51:42 -07:00
parent fe17550a80
commit b46378e0b6

View file

@ -158,7 +158,7 @@ QSharedPointer<T> DependencyManager::set(Args&&... args) {
}
QSharedPointer<T> newInstance(new I(args...), &I::customDeleter);
_instanceHash.insert(hashCode, newInstance);
manager()._instanceHash.insert(hashCode, newInstance);
return newInstance;
}