[Codacy] Removed most of issues under "Performance" category

This commit is contained in:
Gliniak
2024-01-20 18:34:29 +01:00
parent 3675d6a6b1
commit 341192f6df
3 changed files with 15 additions and 13 deletions

View File

@@ -125,7 +125,7 @@ std::vector<uint64_t> PluginLoader::GetHashes(
const auto arr = toml_entry->as_array();
for (cpptoml::array::const_iterator itr = arr->begin(); itr != arr->end();
itr++) {
++itr) {
const std::string hash_entry = itr->get()->as<std::string>()->get();
hashes.push_back(strtoull(hash_entry.c_str(), NULL, 16));
}