servo: Merge #6497 - Remove the negate_unsigned feature gate from CEF (from Ms2ger:negate_unsigned); r=zmike

Source-Repo: https://github.com/servo/servo
Source-Revision: 53c04b33f00ac5fc25d7d98dbb2cf0b983ddd3bd
This commit is contained in:
Ms2ger 2015-06-27 13:09:24 -06:00
Родитель ab33a0f760
Коммит 9bce277ddd
2 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -10,7 +10,6 @@
#![feature(filling_drop)]
#![feature(iter_arith)]
#![feature(link_args)]
#![feature(negate_unsigned)]
#![feature(plugin)]
#![feature(str_utf16)]
#![feature(unicode)]

Просмотреть файл

@ -51,7 +51,7 @@ pub struct Window {
#[cfg(target_os="macos")]
fn load_gl() {
const RTLD_DEFAULT: *mut c_void = (-2) as *mut c_void;
const RTLD_DEFAULT: *mut c_void = (-2isize) as usize as *mut c_void;
extern {
fn dlsym(handle: *mut c_void, symbol: *const c_char) -> *mut c_void;