From 043d80f7e1855f3694f8f4bff172373e087df30e Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Wed, 21 Feb 2018 12:14:50 -0800 Subject: [PATCH] Make the bitset module private. This is just an implementation detail. --- lib/cretonne/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cretonne/src/lib.rs b/lib/cretonne/src/lib.rs index f947f68621..b4c386477c 100644 --- a/lib/cretonne/src/lib.rs +++ b/lib/cretonne/src/lib.rs @@ -17,7 +17,6 @@ pub mod entity; pub mod bforest; pub mod binemit; -pub mod bitset; pub mod cursor; pub mod dominator_tree; pub mod flowgraph; @@ -31,6 +30,7 @@ pub mod timing; pub mod verifier; mod abi; +mod bitset; mod constant_hash; mod context; mod iterators;