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

@ -352,7 +352,7 @@ std::string MsgThread::BuildMsgWithLocation(const char* msg)
}
desc.Add(msg);
return std::string(desc.Description());
return desc.Description();
}
void MsgThread::Info(const char* msg)