mirror of
https://github.com/opencv/opencv.git
synced 2025-07-25 22:57:53 +08:00
Merge pull request #19528 from smirnov-alexey:as/gapi_optional_fix
This commit is contained in:
commit
928d5ae315
@ -84,7 +84,7 @@ namespace util
|
|||||||
|
|
||||||
// Implementation //////////////////////////////////////////////////////////
|
// Implementation //////////////////////////////////////////////////////////
|
||||||
template<class T> optional<T>::optional(T &&v) noexcept
|
template<class T> optional<T>::optional(T &&v) noexcept
|
||||||
: m_holder(v)
|
: m_holder(std::move(v))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user