diff options
Diffstat (limited to 'components/canvas/lib.rs')
-rw-r--r-- | components/canvas/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/canvas/lib.rs b/components/canvas/lib.rs index 7377e0385c7..5ee82053005 100644 --- a/components/canvas/lib.rs +++ b/components/canvas/lib.rs @@ -2,7 +2,6 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#![feature(nonzero)] #![feature(plugin)] #![plugin(plugins)] @@ -19,6 +18,7 @@ extern crate log; extern crate num; extern crate offscreen_gl_context; extern crate util; +extern crate webrender_traits; pub mod canvas_paint_thread; mod premultiplytable; |