From 7e2e426212a44e2d125e7d1735762edd3cfad722 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Mon, 5 May 2014 11:00:16 +0200 Subject: [PATCH] Use Vec for SendableFrameTree::children. --- src/components/main/constellation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/main/constellation.rs b/src/components/main/constellation.rs index 237107027f5..94c5d0e1039 100644 --- a/src/components/main/constellation.rs +++ b/src/components/main/constellation.rs @@ -76,7 +76,7 @@ impl Clone for ChildFrameTree { pub struct SendableFrameTree { pub pipeline: CompositionPipeline, - pub children: ~[SendableChildFrameTree], + pub children: Vec, } pub struct SendableChildFrameTree {