From b67605814738d17484e508d037b8b1f09c27cab6 Mon Sep 17 00:00:00 2001 From: John Fultz Date: Sun, 21 Jul 2019 02:06:00 -0500 Subject: Visual C++ compiler warning fixes. Mostly signed/unsigned/size_t mismatches, except for one case treating a bool as an integer. --- reporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'reporter.cpp') diff --git a/reporter.cpp b/reporter.cpp index 5a2c484..4b13161 100644 --- a/reporter.cpp +++ b/reporter.cpp @@ -93,7 +93,7 @@ void Reporter::reportPosition(const GamePosition &position, ComputerPlayer *comp int highestScore = 0; double highestEquity = 0; - unsigned int widestPositionString = 0; + size_t widestPositionString = 0; unsigned int widestMove = 0; bool hasWinPercentages = false; const Quackle::MoveList::const_iterator end(moves.end()); -- cgit v1.2.3