From 28f5d54334b17064b0eaf02614b8256f27f4bfb2 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Thu, 5 Nov 2015 16:32:23 +0100 Subject: [PATCH] Remove the unused PipelineExitType enum. --- components/msg/constellation_msg.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/components/msg/constellation_msg.rs b/components/msg/constellation_msg.rs index 98fdcc052fb..26fcb842d0e 100644 --- a/components/msg/constellation_msg.rs +++ b/components/msg/constellation_msg.rs @@ -517,11 +517,3 @@ impl fmt::Display for PipelineId { #[derive(Clone, PartialEq, Eq, Copy, Hash, Debug, Deserialize, Serialize, HeapSizeOf)] pub struct SubpageId(pub u32); - -// The type of pipeline exit. During complete shutdowns, pipelines do not have to -// release resources automatically released on process termination. -#[derive(Copy, Clone, Debug, Deserialize, Serialize)] -pub enum PipelineExitType { - PipelineOnly, - Complete, -}