Skip to content

Commit 127f2be

Browse files
authored
Revert "mach_port: Removed redundant pub use" (#620)
This reverts commit 6d00383. It broke semver because it removed the export of CFIndex which which older versions of the core-foundation crate are depending on. Fixes #619
1 parent 9effb78 commit 127f2be

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

core-foundation-sys/src/mach_port.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
// option. This file may not be copied, modified, or distributed
88
// except according to those terms.
99

10-
use base::{CFAllocatorRef, CFIndex, CFTypeID, Boolean, mach_port_t};
1110
use string::CFStringRef;
11+
pub use base::{CFAllocatorRef, CFIndex, CFTypeID};
12+
use base::{Boolean, mach_port_t};
1213
use runloop::CFRunLoopSourceRef;
1314
use std::os::raw::c_void;
1415

core-foundation/src/mach_port.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use base::{TCFType, CFIndex};
1+
use base::TCFType;
22
use core_foundation_sys::base::kCFAllocatorDefault;
33
use runloop::CFRunLoopSource;
44
pub use core_foundation_sys::mach_port::*;

0 commit comments

Comments
 (0)