about summary refs log tree commit diff
path: root/src/libstd/sync/mpsc/select.rs
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2019-02-06 10:58:29 +0100
committerOliver Scherer <github35764891676564198441@oli-obk.de>2019-02-11 15:08:17 +0100
commit1dba7cb20224b5bb3a22641b2f4f2f73e5157dee (patch)
treea8da71dd7fd7e721f5694b1121a8e9461bbef4d8 /src/libstd/sync/mpsc/select.rs
parenta83e73dce4f0e80ff7559b3816f4f24391d4ff53 (diff)
downloadrust-1dba7cb20224b5bb3a22641b2f4f2f73e5157dee.tar.gz
rust-1dba7cb20224b5bb3a22641b2f4f2f73e5157dee.zip
Fiddle through the module visibilities for tests
Diffstat (limited to 'src/libstd/sync/mpsc/select.rs')
-rw-r--r--src/libstd/sync/mpsc/select.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mpsc/select.rs b/src/libstd/sync/mpsc/select.rs
index 9487c0cf674..e34fc5487cf 100644
--- a/src/libstd/sync/mpsc/select.rs
+++ b/src/libstd/sync/mpsc/select.rs
@@ -158,7 +158,7 @@ impl Select {
     }
 
     /// Helper method for skipping the preflight checks during testing
-    fn wait2(&self, do_preflight_checks: bool) -> usize {
+    pub(super) fn wait2(&self, do_preflight_checks: bool) -> usize {
         // Note that this is currently an inefficient implementation. We in
         // theory have knowledge about all receivers in the set ahead of time,
         // so this method shouldn't really have to iterate over all of them yet