Skip to content

rlutil.h - line 577 - Warning: Converting of "size_t" to "unsigned int", data loss possible. #46

Description

@MangaD

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions