about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAdolfo OchagavĂ­a <aochagavia92@gmail.com>2014-06-29 11:44:25 +0200
committerAdolfo OchagavĂ­a <aochagavia92@gmail.com>2014-06-29 11:44:25 +0200
commit96fdf4dae5537c25de3b37822319680b2c07c13b (patch)
treeb37ce3b699d34402ffd691ccfab8ce49a8174414 /src
parente6d6c8beaa6a0b77334bdbed7105b3c3c17420be (diff)
downloadrust-96fdf4dae5537c25de3b37822319680b2c07c13b.tar.gz
rust-96fdf4dae5537c25de3b37822319680b2c07c13b.zip
Impl Rand for tuples of arity 11 and 12
Diffstat (limited to 'src')
-rw-r--r--src/librand/rand_impls.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librand/rand_impls.rs b/src/librand/rand_impls.rs
index 3dd054cee9d..77433877ec6 100644
--- a/src/librand/rand_impls.rs
+++ b/src/librand/rand_impls.rs
@@ -203,6 +203,8 @@ tuple_impl!{A, B, C, D, E, F, G}
 tuple_impl!{A, B, C, D, E, F, G, H}
 tuple_impl!{A, B, C, D, E, F, G, H, I}
 tuple_impl!{A, B, C, D, E, F, G, H, I, J}
+tuple_impl!{A, B, C, D, E, F, G, H, I, J, K}
+tuple_impl!{A, B, C, D, E, F, G, H, I, J, K, L}
 
 impl<T:Rand> Rand for Option<T> {
     #[inline]