Skip to content

Commit

Permalink
fix: type mismatch in comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
jahorta committed Jul 7, 2024
1 parent 17be2b6 commit d7ac0e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/GUI/MemWatcher/MemWatchWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ void MemWatchWidget::onMemWatchContextMenuRequested(const QPoint& pos)
connect(copyPointer, &QAction::triggered, this,
[this, entry] { copyAddressToClipboard(entry->getConsoleAddress()); });
copyAddrSubmenu->addAction(copyPointer);
for (int i = 0; i < entry->getPointerLevel(); ++i)
for (int i = 0; i < static_cast<int>(entry->getPointerLevel()); ++i)
{
std::string strAddressOfPath = entry->getAddressStringForPointerLevel(i + 1);
if (strAddressOfPath == "???")
Expand Down

0 comments on commit d7ac0e6

Please sign in to comment.