Deny unused variables.

This commit is contained in:
Ms2ger 2014-07-12 18:22:31 +02:00
parent bfde6ac0a7
commit 33a7fe4f7e
5 changed files with 26 additions and 16 deletions

View file

@ -7,6 +7,6 @@ use types::cef_thread_id_t;
//FIXME: this should check the current servo task I guess?
#[no_mangle]
pub extern "C" fn cef_currently_on(tid: cef_thread_id_t) -> c_int {
pub extern "C" fn cef_currently_on(_tid: cef_thread_id_t) -> c_int {
1
}