Fix clang-tidy warnings

This commit is contained in:
momo5502
2025-03-18 20:30:55 +01:00
parent d07656c1ee
commit bf01b125ac
13 changed files with 41 additions and 19 deletions

View File

@@ -41,7 +41,7 @@ struct mapped_module
uint64_t find_export(const std::string_view export_name) const
{
for (auto& symbol : this->exports)
for (const auto& symbol : this->exports)
{
if (symbol.name == export_name)
{