Skip to content

Commit

Permalink
Another VC2013 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMarex committed Jun 15, 2014
1 parent 40e2d79 commit c009dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Extractor/ExtractionContainers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ void ExtractionContainers::PrepareData(const std::string &output_file_name,
std::vector<unsigned> name_lengths;
for (const std::string &temp_string : name_list)
{
const unsigned string_length = std::min(temp_string.length(), 255lu);
const unsigned string_length = std::min(static_cast<unsigned>(temp_string.length()), 255u);
name_lengths.push_back(string_length);
total_length += string_length;
}
Expand Down

0 comments on commit c009dce

Please sign in to comment.