diff options
author | Jack Moffitt <jack@metajack.im> | 2014-07-21 07:37:24 -0600 |
---|---|---|
committer | Jack Moffitt <jack@metajack.im> | 2014-08-02 21:11:47 -0600 |
commit | b91e6f30e063cbcea4ffd750da8385ce448de797 (patch) | |
tree | 3e762f7866e29379810ac1e612f7942979e21b87 /src/components/layout/context.rs | |
parent | 8b6f62c195dd7e42d0b6a18f2ced6fa16bc29faa (diff) | |
download | servo-b91e6f30e063cbcea4ffd750da8385ce448de797.tar.gz servo-b91e6f30e063cbcea4ffd750da8385ce448de797.zip |
Upgrade Rust.
Diffstat (limited to 'src/components/layout/context.rs')
-rw-r--r-- | src/components/layout/context.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/layout/context.rs b/src/components/layout/context.rs index 9fca5632659..0a58e3a761a 100644 --- a/src/components/layout/context.rs +++ b/src/components/layout/context.rs @@ -73,7 +73,7 @@ pub struct LayoutContext { /// The CSS selector stylist. /// /// FIXME(#2604): Make this no longer an unsafe pointer once we have fast `RWArc`s. - pub stylist: *Stylist, + pub stylist: *const Stylist, /// The root node at which we're starting the layout. pub reflow_root: OpaqueNode, |