mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-06 17:41:04 +00:00
Fix various performance issues reported by cppcheck (#5628)
* Also remove 1 non declared but defined functions
This commit is contained in:
parent
de5ecc9fa3
commit
370354cc87
8 changed files with 57 additions and 75 deletions
|
@ -42,12 +42,12 @@ static std::string getMediaCacheDir()
|
|||
*/
|
||||
|
||||
ClientMediaDownloader::ClientMediaDownloader():
|
||||
m_media_cache(getMediaCacheDir())
|
||||
m_media_cache(getMediaCacheDir()),
|
||||
m_initial_step_done(false),
|
||||
m_uncached_count(0),
|
||||
m_uncached_received_count(0),
|
||||
m_name_bound("")
|
||||
{
|
||||
m_initial_step_done = false;
|
||||
m_name_bound = ""; // works because "" is an invalid file name
|
||||
m_uncached_count = 0;
|
||||
m_uncached_received_count = 0;
|
||||
m_httpfetch_caller = HTTPFETCH_DISCARD;
|
||||
m_httpfetch_active = 0;
|
||||
m_httpfetch_active_limit = 0;
|
||||
|
@ -69,7 +69,7 @@ ClientMediaDownloader::~ClientMediaDownloader()
|
|||
delete m_remotes[i];
|
||||
}
|
||||
|
||||
void ClientMediaDownloader::addFile(std::string name, std::string sha1)
|
||||
void ClientMediaDownloader::addFile(const std::string &name, const std::string &sha1)
|
||||
{
|
||||
assert(!m_initial_step_done); // pre-condition
|
||||
|
||||
|
@ -104,7 +104,7 @@ void ClientMediaDownloader::addFile(std::string name, std::string sha1)
|
|||
m_files.insert(std::make_pair(name, filestatus));
|
||||
}
|
||||
|
||||
void ClientMediaDownloader::addRemoteServer(std::string baseurl)
|
||||
void ClientMediaDownloader::addRemoteServer(const std::string &baseurl)
|
||||
{
|
||||
assert(!m_initial_step_done); // pre-condition
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue