You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MangaD
changed the title
rlutil.h - line 595 - Warning: Converting of "size_t" to "unsigned int", data loss possible.
rlutil.h - line 577 - Warning: Converting of "size_t" to "unsigned int", data loss possible.
Jun 3, 2016
On line 577 change:
unsigned int len = str_.size();
to:
unsigned int len = static_cast<unsigned int>(str_.size());
On line 580 change:
unsigned int len = strlen(str);
to:
unsigned int len = (unsigned int) strlen(str);
The text was updated successfully, but these errors were encountered: