mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Update to rustc 1.7.0-nightly (b4707ebca 2015-12-27)
This commit is contained in:
parent
a28b5cb438
commit
74f6c9b74f
10 changed files with 31 additions and 23 deletions
|
@ -4,7 +4,8 @@
|
|||
|
||||
//! Data needed by the layout thread.
|
||||
|
||||
#![deny(unsafe_code)]
|
||||
// for thread_local
|
||||
#![allow(unsafe_code)]
|
||||
|
||||
use app_units::Au;
|
||||
use canvas_traits::CanvasMsg;
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
//! Supports writing a trace file created during each layout scope
|
||||
//! that can be viewed by an external tool to make layout debugging easier.
|
||||
|
||||
// for thread_local
|
||||
#![allow(unsafe_code)]
|
||||
|
||||
use flow;
|
||||
use flow_ref::FlowRef;
|
||||
use rustc_serialize::json;
|
||||
|
|
|
@ -4,6 +4,9 @@
|
|||
|
||||
//! Traversals over the DOM and flow trees, running the layout computations.
|
||||
|
||||
// For thread_local.
|
||||
#![allow(unsafe_code)]
|
||||
|
||||
use construct::FlowConstructor;
|
||||
use context::{LayoutContext, SharedLayoutContext};
|
||||
use flow::{PostorderFlowTraversal, PreorderFlowTraversal};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue