Avoid unnecessary type names in return statements

This commit is contained in:
Tim Wojtulewicz 2023-07-06 14:07:43 -07:00
parent 4957dace64
commit de13bb6361
12 changed files with 35 additions and 36 deletions

View file

@ -203,7 +203,7 @@ std::string Specific_RE_Matcher::LookupDef(const std::string& def)
if ( iter != defs.end() )
return iter->second;
return std::string();
return {};
}
bool Specific_RE_Matcher::MatchAll(const char* s)