From 42daeab7df3e0f883e43573389b4e3e3f31c644b Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Mon, 8 Aug 2011 14:55:35 -0700 Subject: [PATCH] rt: "const foo const &" == "const foo &", duh. Puts out burning tinderbox. --- src/rt/rust_shape.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }