mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
#40 Explicitly check if string length is zero instead of casting it to bool
This commit is contained in:
parent
470b3e8840
commit
48e1a44dae
1 changed files with 2 additions and 2 deletions
|
@ -1503,13 +1503,13 @@ const char* ProgramInvocationShortName() { // like the GNU libc fn
|
|||
}
|
||||
|
||||
void SetUsageMessage(const string& usage) {
|
||||
if (program_usage.length())
|
||||
if (program_usage.length() > 0)
|
||||
ReportError(DIE, "ERROR: SetUsageMessage() called twice\n");
|
||||
program_usage = usage; // small memory leak
|
||||
}
|
||||
|
||||
const char* ProgramUsage() {
|
||||
if (program_usage.length()) {
|
||||
if (program_usage.length() > 0) {
|
||||
return program_usage.c_str();
|
||||
}
|
||||
return "Warning: SetUsageMessage() never called";
|
||||
|
|
Loading…
Add table
Reference in a new issue