removed instances of -> () in existing code

This commit is contained in:
lucantrop 2017-03-13 17:27:14 +01:00
parent b1faaa15dc
commit d6568e608b
8 changed files with 29 additions and 29 deletions

View file

@ -27,12 +27,12 @@ macro_rules! impl_arc_ffi {
unsafe impl HasArcFFI for $servo_type {}
#[no_mangle]
pub unsafe extern "C" fn $addref(obj: &$gecko_type) -> () {
pub unsafe extern "C" fn $addref(obj: &$gecko_type) {
<$servo_type>::addref(obj);
}
#[no_mangle]
pub unsafe extern "C" fn $release(obj: &$gecko_type) -> () {
pub unsafe extern "C" fn $release(obj: &$gecko_type) {
<$servo_type>::release(obj);
}
}