File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 9a093ab70a7d7b12e9cddf644e1a975375937465
4
+ refs/heads/snap-stage3: 1d9181bd760cb89171e892204338bb64275eb4e5
5
5
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ impl Logger {
164
164
struct Context {
165
165
db: RWARC<Database>,
166
166
logger: @mut Logger,
167
- cfg: @ json::Object,
167
+ cfg: json::Object,
168
168
freshness: TreeMap<~str,@fn(&str,&str)->bool>
169
169
}
170
170
@@ -215,7 +215,7 @@ fn digest_file(path: &Path) -> ~str {
215
215
}
216
216
217
217
impl Context {
218
- pub fn new(db: RWARC<Database>, lg: @mut Logger, cfg: @ json::Object)
218
+ pub fn new(db: RWARC<Database>, lg: @mut Logger, cfg: json::Object)
219
219
-> Context {
220
220
Context {
221
221
db: db,
@@ -361,7 +361,7 @@ fn test() {
361
361
db_cache : TreeMap :: new( ) ,
362
362
db_dirty : false } ) ;
363
363
let lg = @mut Logger { a : ( ) } ;
364
- let cfg = @ HashMap :: new( ) ;
364
+ let cfg = HashMap :: new( ) ;
365
365
let cx = @Context :: new( db, lg, cfg) ;
366
366
let w: Work < ~str > = do cx. prep( "test1" ) |prep| {
367
367
let pth = Path ( "foo.c" ) ;
You can’t perform that action at this time.
0 commit comments