[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/01: made the usage of mt19937 Boost-pre-
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/01: made the usage of mt19937 Boost-pre-1.47 compatible |
Date: |
Mon, 31 Mar 2014 16:18:16 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit 28033281b6e774dbb240d8f54cd5b6f5e22351a7
Author: Marcus Müller <address@hidden>
Date: Mon Mar 31 17:29:54 2014 +0200
made the usage of mt19937 Boost-pre-1.47 compatible
"correct" namespace is boost::random::, but mt19937 still exists in
boost::, so
fixing this was just using the same name like in the other files that use
mt19937
---
gr-blocks/lib/message_strobe_random_impl.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gr-blocks/lib/message_strobe_random_impl.h
b/gr-blocks/lib/message_strobe_random_impl.h
index 277c113..32eddb5 100644
--- a/gr-blocks/lib/message_strobe_random_impl.h
+++ b/gr-blocks/lib/message_strobe_random_impl.h
@@ -45,7 +45,7 @@ namespace gr {
void run();
float next_delay();
- boost::random::mt19937 d_rng;
+ boost::mt19937 d_rng;
boost::shared_ptr< boost::variate_generator <boost::mt19937,
boost::poisson_distribution<> > > d_variate_poisson;
boost::shared_ptr< boost::variate_generator <boost::mt19937,
boost::normal_distribution<> > > d_variate_normal;
boost::shared_ptr< boost::variate_generator <boost::mt19937,
boost::uniform_real<> > > d_variate_uniform;