mirror of
https://github.com/gflags/gflags.git
synced 2025-04-04 21:15:05 +00:00
Fix unsigned comparison error in gflags_reporting.cc
This commit is contained in:
parent
a69b2544d6
commit
3b185f2882
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 = static_cast<int>(main_part.length());
|
||||
size_t chars_left = 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