mirror of
https://github.com/servo/servo.git
synced 2025-07-14 10:53:42 +01:00
Deny unused variables.
This commit is contained in:
parent
bfde6ac0a7
commit
33a7fe4f7e
5 changed files with 26 additions and 16 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue