From 84bce949d697decd757fe362c99a10c8f82a81f4 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Tue, 10 Jan 2017 13:08:19 -0500 Subject: [PATCH] Remove remaining copy of the comment about idtype_t being an enum. --- src/unix/bsd/apple/mod.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/unix/bsd/apple/mod.rs b/src/unix/bsd/apple/mod.rs index 1a15245f4f287..a4b6c9b4e86f2 100644 --- a/src/unix/bsd/apple/mod.rs +++ b/src/unix/bsd/apple/mod.rs @@ -21,11 +21,6 @@ pub type tcflag_t = ::c_ulong; pub type nl_item = ::c_int; pub type id_t = ::c_uint; pub type sem_t = ::c_int; - -// idtype_t is specified as a C enum: -// http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_wait.h.html -// However, FFI doesn't currently know how to ABI-match a C enum -// (rust#28925, rust#34641). pub type idtype_t = ::c_uint; pub enum timezone {}