#40 Explicitly check if string length is zero instead of casting it to bool

This commit is contained in:
Andreas Schuh 2015-03-25 00:30:40 +00:00
parent 470b3e8840
commit 48e1a44dae

View file

@ -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";