Closed claudiofantacci closed 7 years ago
While compiling RTF under macOS, two warnings were raised by the make process. For details see #51.
This PR aims to remove the two warnings with two simple edits.
Please note that in src/testrunner/src/SuitRunner.cpp#170 the rep variable is of type unsigned int, thus the if condition rep >= 0 is always true.
rep
unsigned int
if
rep >= 0
true
Rebased on master 👍
While compiling RTF under macOS, two warnings were raised by the make process. For details see #51.
This PR aims to remove the two warnings with two simple edits.
Please note that in src/testrunner/src/SuitRunner.cpp#170 the
rep
variable is of typeunsigned int
, thus theif
conditionrep >= 0
is alwaystrue
.