diff options
| author | Marijn Haverbeke <[email protected]> | 2011-05-12 17:24:54 +0200 |
|---|---|---|
| committer | Marijn Haverbeke <[email protected]> | 2011-05-12 21:30:44 +0200 |
| commit | 3816e57fd2a8ab19e4ac6d4b3ddd5b49d5973ff2 (patch) | |
| tree | 508982ed2f789aedd89eebd529343d9dc88b8e01 /src/comp/rustc.rc | |
| parent | Transitional change to make extfmt output lowercase module name (diff) | |
| download | rust-3816e57fd2a8ab19e4ac6d4b3ddd5b49d5973ff2.tar.xz rust-3816e57fd2a8ab19e4ac6d4b3ddd5b49d5973ff2.zip | |
Downcase std modules again, move to :: for module dereferencing
This should be a snapshot transition.
Diffstat (limited to 'src/comp/rustc.rc')
| -rw-r--r-- | src/comp/rustc.rc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/comp/rustc.rc b/src/comp/rustc.rc index de11256c..1e619b29 100644 --- a/src/comp/rustc.rc +++ b/src/comp/rustc.rc @@ -55,11 +55,11 @@ mod util { mod typestate_ann; } -auth front.creader.load_crate = unsafe; -auth front.creader.get_metadata_section = unsafe; -auth middle.metadata = unsafe; -auth middle.trans = unsafe; -auth lib.llvm = unsafe; +auth front::creader::load_crate = unsafe; +auth front::creader::get_metadata_section = unsafe; +auth middle::metadata = unsafe; +auth middle::trans = unsafe; +auth lib::llvm = unsafe; mod lib { alt (target_os) { |