gapi(build): eliminate Win32 build warning

This commit is contained in:
Alexander Alekhin 2021-03-25 22:15:06 +00:00
parent 0753408e10
commit 3290a5f370

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;
}
};