Skip to content

Commit

Permalink
Fixed more MSVC compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkwhoffmann committed May 31, 2024
1 parent f190d5e commit 056f55f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Emulator/Misc/RetroShell/Interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,9 @@ Interpreter::help(const Command& current)
usage(current);

// Determine tabular positions to align the output
isize tab = 0;
usize tab = 0;
for (auto &it : current.subCommands) {
tab = std::max(tab, (isize)it.fullName.length());
tab = std::max(tab, it.fullName.length());
}
tab += indent.size();

Expand Down
2 changes: 0 additions & 2 deletions Emulator/VirtualC64.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ namespace vc64 {
*/
class VirtualC64 : vc64::Emulator {

using vc64::Emulator::Thread::Suspendable;


//
// Static methods
Expand Down

0 comments on commit 056f55f

Please sign in to comment.