summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/math/random.cc
diff options
context:
space:
mode:
authorStefan <stefan.wunsch@student.kit.edu>2015-09-02 17:54:48 +0200
committerStefan <stefan.wunsch@student.kit.edu>2015-09-02 17:54:48 +0200
commit190ebe6caa1b92172fba691285b1bdb684e6ae83 (patch)
tree70a079f2cad407fa40e051c6111b6caa25ea0e0b /gnuradio-runtime/lib/math/random.cc
parent955b8db0ea627c7dd59d9caef0cbf9e3c9f9b447 (diff)
remove fixed fixme
Diffstat (limited to 'gnuradio-runtime/lib/math/random.cc')
-rw-r--r--gnuradio-runtime/lib/math/random.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/math/random.cc b/gnuradio-runtime/lib/math/random.cc
index 76de3bdde5..4ca32eb5e0 100644
--- a/gnuradio-runtime/lib/math/random.cc
+++ b/gnuradio-runtime/lib/math/random.cc
@@ -68,7 +68,7 @@ namespace gr {
void
random::reseed(unsigned int seed)
{
- if(seed==0) d_seed = static_cast<unsigned int>(std::time(0)); // FIXME: add seed method correctly
+ if(seed==0) d_seed = static_cast<unsigned int>(std::time(0));
else d_seed = seed;
d_rng->seed(d_seed);
}