forked from mirrors/qmk_userspace
Fix unreferenced errors with mingw compiler and unit tests
This commit is contained in:
parent
5a25d50168
commit
78545b9509
5 changed files with 10 additions and 5 deletions
|
@ -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();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue