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

pull/18594/head
Alexander Alekhin 4 years ago committed by GitHub
commit 928d5ae315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/gapi/include/opencv2/gapi/util/optional.hpp

@ -84,7 +84,7 @@ namespace util
// Implementation //////////////////////////////////////////////////////////
template<class T> optional<T>::optional(T &&v) noexcept
: m_holder(v)
: m_holder(std::move(v))
{
}

Loading…
Cancel
Save