Fix unreferenced errors with mingw compiler and unit tests

This commit is contained in:
Fred Sundvik 2017-07-11 19:41:04 +03:00
parent 5a25d50168
commit 78545b9509
5 changed files with 10 additions and 5 deletions

View file

@ -44,8 +44,8 @@ void TestFixture::run_one_scan_loop() {
advance_time(1);
}
void TestFixture::idle_for(uint time) {
for (uint i=0; i<time; i++) {
void TestFixture::idle_for(unsigned time) {
for (unsigned i=0; i<time; i++) {
run_one_scan_loop();
}
}