mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Added missing static_cast
This commit is contained in:
parent
e66e30256f
commit
1aefb43a48
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ string DescribeOneFlag(const CommandLineFlagInfo& flag) {
|
|||
flag.name.c_str(),
|
||||
flag.description.c_str());
|
||||
const char* c_string = main_part.c_str();
|
||||
int chars_left = main_part.length();
|
||||
int chars_left = static_cast<int>(main_part.length());
|
||||
string final_string = "";
|
||||
int chars_in_line = 0; // how many chars in current line so far?
|
||||
while (1) {
|
||||
|
|
Loading…
Add table
Reference in a new issue