mirror of
https://github.com/servo/servo.git
synced 2025-08-09 23:45:35 +01:00
Auto merge of #6497 - Ms2ger:negate_unsigned, r=zmike
Remove the negate_unsigned feature gate from CEF. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6497) <!-- Reviewable:end -->
This commit is contained in:
commit
53c04b33f0
2 changed files with 1 additions and 2 deletions
|
@ -10,7 +10,6 @@
|
||||||
#![feature(filling_drop)]
|
#![feature(filling_drop)]
|
||||||
#![feature(iter_arith)]
|
#![feature(iter_arith)]
|
||||||
#![feature(link_args)]
|
#![feature(link_args)]
|
||||||
#![feature(negate_unsigned)]
|
|
||||||
#![feature(plugin)]
|
#![feature(plugin)]
|
||||||
#![feature(str_utf16)]
|
#![feature(str_utf16)]
|
||||||
#![feature(unicode)]
|
#![feature(unicode)]
|
||||||
|
|
|
@ -51,7 +51,7 @@ pub struct Window {
|
||||||
|
|
||||||
#[cfg(target_os="macos")]
|
#[cfg(target_os="macos")]
|
||||||
fn load_gl() {
|
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 {
|
extern {
|
||||||
fn dlsym(handle: *mut c_void, symbol: *const c_char) -> *mut c_void;
|
fn dlsym(handle: *mut c_void, symbol: *const c_char) -> *mut c_void;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue