Squash some warnings

This commit is contained in:
Brendan Zabarauskas 2015-01-18 19:51:23 +11:00
parent 00460364ca
commit f5fb030c36

View file

@ -32,9 +32,9 @@ fn main() {
run(window3, (1.0, 0.0, 0.0, 1.0));
});
t1.join();
t2.join();
t3.join();
let _ = t1.join();
let _ = t2.join();
let _ = t3.join();
}
#[cfg(feature = "window")]