about summary refs log tree commit diff
path: root/src/libcore/extfmt.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-09-12 11:22:48 -0700
committerBrian Anderson <banderson@mozilla.com>2012-09-12 11:22:48 -0700
commit320331fe35f4020b388b2ccc5128d7261473ea08 (patch)
tree7b7edd6cc02f5d6a7c1740bd0812e87950a44412 /src/libcore/extfmt.rs
parent2eef6658c3e949e17dae115c95c7686105184017 (diff)
Use a different strategy for transitioning to camel case extfmt
Diffstat (limited to 'src/libcore/extfmt.rs')
-rw-r--r--src/libcore/extfmt.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/libcore/extfmt.rs b/src/libcore/extfmt.rs
index e7b1ec517ec..10c9547b217 100644
--- a/src/libcore/extfmt.rs
+++ b/src/libcore/extfmt.rs
@@ -273,10 +273,8 @@ mod ct {
 // decisions made a runtime. If it proves worthwhile then some of these
 // conditions can be evaluated at compile-time. For now though it's cleaner to
 // implement it 0this way, I think.
-#[cfg(stage1)]
-#[cfg(stage2)]
-#[cfg(stage3)]
-mod rt {
+// XXX Rename to rt after snapshot
+mod rt2 {
     const flag_none : u32 = 0u32;
     const flag_left_justify   : u32 = 0b00000000000000000000000000000001u32;
     const flag_left_zero_pad  : u32 = 0b00000000000000000000000000000010u32;
@@ -464,7 +462,6 @@ mod rt {
 }
 
 // XXX remove after snappies
-#[cfg(stage0)]
 #[allow(non_camel_case_types)]
 mod rt {
     const flag_none : u32 = 0u32;