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/back/abi.rs | |
| 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/back/abi.rs')
| -rw-r--r-- | src/comp/back/abi.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/back/abi.rs b/src/comp/back/abi.rs index 1ad32895..078c1f3d 100644 --- a/src/comp/back/abi.rs +++ b/src/comp/back/abi.rs @@ -2,7 +2,7 @@ const int rc_base_field_refcnt = 0; -// FIXME: import from std.dbg when imported consts work. +// FIXME: import from std::dbg when imported consts work. const uint const_refcount = 0x7bad_face_u; const int task_field_refcnt = 0; @@ -97,7 +97,7 @@ fn native_glue_name(int n, native_glue_type ngt) -> str { case (ngt_pure_rust) { prefix = "rust_native_pure_rust_"; } case (ngt_cdecl) { prefix = "rust_native_cdecl_"; } } - ret prefix + util.common.istr(n); + ret prefix + util::common::istr(n); } fn activate_glue_name() -> str { |