mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 21:47:40 -05:00
fix: Invalid signedness in comparison
This commit is contained in:
@@ -135,7 +135,7 @@ namespace hex::plugin::builtin {
|
||||
const auto &path = file->path;
|
||||
|
||||
auto currSegment = wolv::util::toUTF8String(*std::next(path.begin(), level));
|
||||
if (std::distance(path.begin(), path.end()) == (level + 1)) {
|
||||
if (std::distance(path.begin(), path.end()) == ptrdiff_t(level + 1)) {
|
||||
ImGui::TableNextRow();
|
||||
ImGui::TableNextColumn();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user