refactor: remove unnecessary string initializations

This commit is contained in:
fanquake
2022-07-25 11:46:57 +01:00
parent a65f6d8cbb
commit 4ddd746bf9
5 changed files with 5 additions and 5 deletions

View File

@@ -740,7 +740,7 @@ std::string ArgsManager::GetHelpMessage() const
{
const bool show_debug = GetBoolArg("-help-debug", false);
std::string usage = "";
std::string usage;
LOCK(cs_args);
for (const auto& arg_map : m_available_args) {
switch(arg_map.first) {