diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2011-08-08 14:55:35 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2011-08-08 14:55:35 -0700 |
| commit | 42daeab7df3e0f883e43573389b4e3e3f31c644b (patch) | |
| tree | ec206b631c58f7f7ef6224d639f1564147625ceb /src/rt/rust_shape.cpp | |
| parent | eb7e9dce4d58953d832b33897afd07307997fc51 (diff) | |
| download | rust-42daeab7df3e0f883e43573389b4e3e3f31c644b.tar.gz rust-42daeab7df3e0f883e43573389b4e3e3f31c644b.zip | |
rt: "const foo const &" == "const foo &", duh. Puts out burning tinderbox.
Diffstat (limited to 'src/rt/rust_shape.cpp')
| -rw-r--r-- | src/rt/rust_shape.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_shape.cpp b/src/rt/rust_shape.cpp index daa649cc621..cb50ecba126 100644 --- a/src/rt/rust_shape.cpp +++ b/src/rt/rust_shape.cpp @@ -178,7 +178,7 @@ public: }; inline ptr_pair -align_to(const ptr_pair const &pair, size_t n) { +align_to(const ptr_pair &pair, size_t n) { return ptr_pair::make(align_to(pair.fst, n), align_to(pair.snd, n)); } |
