diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-05-03 14:11:54 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-05-03 14:11:54 -0700 |
| commit | 6e5c8a7fb86aa38d47d70f7390035cc426f91159 (patch) | |
| tree | e9b157de0a53e056ebd63db17557e4af1ac17ef1 /src/rt/rust_shape.cpp | |
| parent | 11a5d10bf2958c642ae6a7c4afff8e181aa2167d (diff) | |
| download | rust-6e5c8a7fb86aa38d47d70f7390035cc426f91159.tar.gz rust-6e5c8a7fb86aa38d47d70f7390035cc426f91159.zip | |
More shape fixes for evecs.
Diffstat (limited to 'src/rt/rust_shape.cpp')
| -rw-r--r-- | src/rt/rust_shape.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust_shape.cpp b/src/rt/rust_shape.cpp index 9f3fbbed89e..c5f6a39b6c8 100644 --- a/src/rt/rust_shape.cpp +++ b/src/rt/rust_shape.cpp @@ -355,9 +355,9 @@ public: walk_vec2(is_pod, get_slice_data_range(is_str, dp)); } - void walk_fixedvec2(uint16_t sz, bool is_pod) { + void walk_fixedvec2(uint16_t n_elts, size_t elt_sz, bool is_pod) { // Fixedvecs compare just like vecs. - walk_vec2(is_pod, get_fixedvec_data_range(sz, dp)); + walk_vec2(is_pod, get_fixedvec_data_range(n_elts, elt_sz, dp)); } void walk_box2() { |
