File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -907,7 +907,7 @@ type type_cache = @mut HashMap<ast::def_id, ty_param_bounds_and_ty>;
907
907
908
908
type constness_cache = @mut HashMap < ast:: def_id , const_eval:: constness > ;
909
909
910
- pub type node_type_table = @mut SmallIntMap < t > ;
910
+ pub type node_type_table = @mut HashMap < uint , t > ;
911
911
912
912
fn mk_rcache ( ) -> creader_cache {
913
913
return @mut HashMap :: new ( ) ;
@@ -934,7 +934,7 @@ pub fn mk_ctxt(s: session::Session,
934
934
def_map : dm,
935
935
region_maps : region_maps,
936
936
region_paramd_items : region_paramd_items,
937
- node_types : @mut SmallIntMap :: new ( ) ,
937
+ node_types : @mut HashMap :: new ( ) ,
938
938
node_type_substs : @mut HashMap :: new ( ) ,
939
939
trait_refs : @mut HashMap :: new ( ) ,
940
940
trait_defs : @mut HashMap :: new ( ) ,
You can’t perform that action at this time.
0 commit comments