From 998bec30cff07ea1e357cbe1d8835716337bbfa5 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Fri, 28 Aug 2015 10:43:04 -0700 Subject: [PATCH] Remove no-op Drop implementation from FontTable This is no longer necessary for opting out of the Copy trait. --- components/gfx/platform/macos/font.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/components/gfx/platform/macos/font.rs b/components/gfx/platform/macos/font.rs index b96f217e0c9..eb33e326230 100644 --- a/components/gfx/platform/macos/font.rs +++ b/components/gfx/platform/macos/font.rs @@ -33,11 +33,6 @@ pub struct FontTable { data: CFData, } -// Noncopyable. -impl Drop for FontTable { - fn drop(&mut self) {} -} - impl FontTable { pub fn wrap(data: CFData) -> FontTable { FontTable { data: data }