Skip to content

Commit

Permalink
Make UnimplementedGCThreadJoinHandle public
Browse files Browse the repository at this point in the history
  • Loading branch information
wks committed Feb 6, 2024
1 parent b968d73 commit fb752a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/gc_thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub trait GCThreadJoinHandle: Send {
}

/// An unimplemented [`GCThreadJoinHandle`]. Calling `join_native_thread` will panic.
struct UnimplementedGCThreadJoinHandle;
pub struct UnimplementedGCThreadJoinHandle;

impl GCThreadJoinHandle for UnimplementedGCThreadJoinHandle {
fn join_native_thread(self) {
Expand Down

0 comments on commit fb752a4

Please sign in to comment.