about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2016-07-27 14:43:06 -0400
committerNiko Matsakis <niko@alum.mit.edu>2016-08-09 20:28:46 -0400
commitae9c049cfc69ac8e14adb8bf6c26ef73c2bbe4ba (patch)
treeee384c7530dbc1936f91978e71e8b0e34a0c8d94
parent5001c92c3e39906042691b2ab36afc28c0e348c0 (diff)
downloadrust-ae9c049cfc69ac8e14adb8bf6c26ef73c2bbe4ba.tar.gz
rust-ae9c049cfc69ac8e14adb8bf6c26ef73c2bbe4ba.zip
remove field that need not be public
-rw-r--r--src/librustc_resolve/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_resolve/lib.rs b/src/librustc_resolve/lib.rs
index 9f1f07004f4..860e569ba7e 100644
--- a/src/librustc_resolve/lib.rs
+++ b/src/librustc_resolve/lib.rs
@@ -1005,7 +1005,7 @@ pub struct Resolver<'a> {
     //
     // There will be an anonymous module created around `g` with the ID of the
     // entry block for `f`.
-    pub module_map: NodeMap<Module<'a>>,
+    module_map: NodeMap<Module<'a>>,
 
     // Whether or not to print error messages. Can be set to true
     // when getting additional info for error message suggestions,