Merge pull request #19784 from alalek:gapi_win32_build_warning

This commit is contained in:
Alexander Alekhin 2021-03-26 01:57:59 +03:00 committed by GitHub
commit b7f6584dab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,7 +109,7 @@ public:
: m_synced_frame_time;
auto n_frames = p.end_time / frame_time;
GAPI_Assert(n_frames > 0u);
return n_frames;
return (std::size_t)n_frames;
}
};