From c4e91b7d5e25139c88a53b2832491db515d59491 Mon Sep 17 00:00:00 2001 From: Bilal Elmoussaoui Date: Tue, 22 Feb 2022 21:11:23 +0100 Subject: [PATCH] gdk: Fix per phantom field removal --- gdk/src/rgba.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gdk/src/rgba.rs b/gdk/src/rgba.rs index 557663315fac..6bf02b552698 100644 --- a/gdk/src/rgba.rs +++ b/gdk/src/rgba.rs @@ -72,7 +72,6 @@ impl RGBA { blue: 0f64, alpha: 1f64, }, - phantom: std::marker::PhantomData, }; pub const BLUE: RGBA = RGBA { @@ -82,7 +81,6 @@ impl RGBA { blue: 1f64, alpha: 1f64, }, - phantom: std::marker::PhantomData, }; pub const GREEN: RGBA = RGBA { @@ -92,7 +90,6 @@ impl RGBA { blue: 0f64, alpha: 1f64, }, - phantom: std::marker::PhantomData, }; pub const RED: RGBA = RGBA { @@ -102,7 +99,6 @@ impl RGBA { blue: 0f64, alpha: 1f64, }, - phantom: std::marker::PhantomData, }; pub const WHITE: RGBA = RGBA { @@ -112,7 +108,6 @@ impl RGBA { blue: 1f64, alpha: 1f64, }, - phantom: std::marker::PhantomData, }; }