Commit f4d7c91363

Andrew Kelley <superjoe30@gmail.com>
2016-09-27 04:42:25
std/rand: remove unneeded TODO
1 parent 87b7c28
Changed files (1)
std/rand.zig
@@ -106,8 +106,6 @@ struct MersenneTwister(
     array: [n]int,
     index: usize,
 
-    // TODO improve compile time eval code and then allow this function to be executed at compile time.
-    #static_eval_enable(false)
     pub fn init(mt: &Self, seed: int) {
         mt.index = n;