1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Merge pull request #19528 from smirnov-alexey:as/gapi_optional_fix

This commit is contained in:
Alexander Alekhin
2021-02-15 23:00:11 +03:00
committed by GitHub
@@ -84,7 +84,7 @@ namespace util
// Implementation //////////////////////////////////////////////////////////
template<class T> optional<T>::optional(T &&v) noexcept
: m_holder(v)
: m_holder(std::move(v))
{
}