Get rid of rvalue ref returns
This commit is contained in:
@@ -198,7 +198,7 @@ SerializedAsynchronousContinuation<OriginalCbFnT>
|
||||
#endif
|
||||
|
||||
template <class OriginalCbFnT>
|
||||
std::unique_ptr<std::forward_list<std::reference_wrapper<Qutex>>>&&
|
||||
std::unique_ptr<std::forward_list<std::reference_wrapper<Qutex>>>
|
||||
SerializedAsynchronousContinuation<OriginalCbFnT>::getAcquiredQutexHistory()
|
||||
const
|
||||
{
|
||||
@@ -229,7 +229,7 @@ const
|
||||
}
|
||||
}
|
||||
|
||||
return std::move(heldLocks);
|
||||
return heldLocks;
|
||||
}
|
||||
|
||||
// Explicit template instantiations for the types we need
|
||||
|
||||
Reference in New Issue
Block a user