Skip to content

Commit 43d4a6d

Browse files
committed
---
yaml --- r: 2782 b: refs/heads/master c: db47cb5 h: refs/heads/master v: v3
1 parent 2665461 commit 43d4a6d

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 0e324cad0a37bdaa0aebb864c3da28b25ad1ebf6
2+
refs/heads/master: db47cb5c1355041a30475e2d32debded1811a354

trunk/src/rt/rust.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ rust_start(uintptr_t main_fn, rust_crate const *crate, int argc,
9595
}
9696

9797
if (log_rt_dwarf) {
98-
rust_crate_reader create_reader(dom, crate);
98+
rust_crate_reader create_reader(dom);
9999
}
100100

101101
uintptr_t main_args[4] = {0, 0, 0, (uintptr_t)args->args};

trunk/src/rt/rust_crate_reader.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ rust_crate_reader::attr::is_unknown() const {
6161
return !(is_numeric() || is_string());
6262
}
6363

64-
rust_crate_reader::rust_crate_reader(rust_dom *dom,
65-
rust_crate const *crate)
64+
rust_crate_reader::rust_crate_reader(rust_dom *dom)
6665
: dom(dom)
6766
{
6867
DLOG(dom, mem, "crate_reader on crate: 0x%" PRIxPTR, this);

trunk/src/rt/rust_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ rust_crate_reader
352352
bool is_unknown() const;
353353
};
354354

355-
rust_crate_reader(rust_dom *dom, rust_crate const *crate);
355+
rust_crate_reader(rust_dom *dom);
356356
};
357357

358358
// An alarm can be put into a wait queue and the task will be notified

0 commit comments

Comments
 (0)