Skip to content

Commit

Permalink
asdsa
Browse files Browse the repository at this point in the history
  • Loading branch information
altalk23 committed Jun 2, 2024
1 parent b6f3760 commit fcafae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void Handler::reorderFunctions() {
auto& vec = m_content->m_functions;
std::cout << "functions size " << vec.size() << std::endl;
std::sort(vec.begin(), vec.end(), [this](auto const a, auto const b) {
std::cout << "reordering " << handles[a] << " " << handles[b] << std::endl;
std::cout << "reordering " << m_handles[a] << " " << m_handles[b] << std::endl;
return (m_hooks.at(m_handles[a])->m_metadata.m_priority < m_hooks.at(m_handles[b])->m_metadata.m_priority);
});
}
Expand Down

0 comments on commit fcafae3

Please sign in to comment.