diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-09-22 22:15:25 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-09-22 22:15:25 -0700 |
| commit | dbd2ee015a9a98825a21ee039e32b87d536d60e6 (patch) | |
| tree | e40aea38d9c818ce90ac82a598901e576742e8f6 /src/rt/rust_builtin.cpp | |
| parent | 33dd7cc85413bc0b5e8b9572f73c01d4d127deff (diff) | |
| download | rust-dbd2ee015a9a98825a21ee039e32b87d536d60e6.tar.gz rust-dbd2ee015a9a98825a21ee039e32b87d536d60e6.zip | |
Remove is_stateful flag from tydesc. Closes #136
Diffstat (limited to 'src/rt/rust_builtin.cpp')
| -rw-r--r-- | src/rt/rust_builtin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp index c2fdce1081c..3d89aa918ce 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -201,8 +201,8 @@ static void debug_tydesc_helper(rust_task *task, type_desc *t) { LOG(task, stdlib, " size %" PRIdPTR ", align %" PRIdPTR - ", stateful %" PRIdPTR ", first_param 0x%" PRIxPTR, - t->size, t->align, t->is_stateful, t->first_param); + ", first_param 0x%" PRIxPTR, + t->size, t->align, t->first_param); } extern "C" CDECL void |
