summary refs log tree commit diff
path: root/src/libsyntax/ext
diff options
context:
space:
mode:
authorBen Striegel <ben.striegel@gmail.com>2012-08-11 10:08:42 -0400
committerBrian Anderson <banderson@mozilla.com>2012-08-28 18:52:44 -0700
commita605fd0cadb578cf917c93646114eac2f1da8e84 (patch)
treeb36d1ff6c5ed38c0785177e4d1f54d672146967d /src/libsyntax/ext
parentecb646477b422de89996acce0c2ba08ce082349a (diff)
downloadrust-a605fd0cadb578cf917c93646114eac2f1da8e84.tar.gz
rust-a605fd0cadb578cf917c93646114eac2f1da8e84.zip
CamelCasify lots of std
Diffstat (limited to 'src/libsyntax/ext')
-rw-r--r--src/libsyntax/ext/pipes/liveness.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/ext/pipes/liveness.rs b/src/libsyntax/ext/pipes/liveness.rs
index 70a2af46625..2003e51f6f9 100644
--- a/src/libsyntax/ext/pipes/liveness.rs
+++ b/src/libsyntax/ext/pipes/liveness.rs
@@ -27,7 +27,7 @@ updating the states using rule (2) until there are no changes.
 
 */
 
-import std::bitv::{bitv};
+import std::bitv::{Bitv};
 
 import ast_builder::empty_span;
 
@@ -35,7 +35,7 @@ fn analyze(proto: protocol, _cx: ext_ctxt) {
     debug!("initializing colive analysis");
     let num_states = proto.num_states();
     let colive = do (copy proto.states).map_to_vec |state| {
-        let bv = ~bitv(num_states, false);
+        let bv = ~Bitv(num_states, false);
         for state.reachable |s| {
             bv.set(s.id, true);
         }
@@ -88,4 +88,4 @@ fn analyze(proto: protocol, _cx: ext_ctxt) {
         debug!("protocol %s is bounded. yay!", proto.name);
         proto.bounded = Some(true);
     }
-}
\ No newline at end of file
+}