diff options
author | Marcus Müller <marcus@hostalia.de> | 2014-03-31 17:29:54 +0200 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-03-31 08:53:24 -0700 |
commit | 28033281b6e774dbb240d8f54cd5b6f5e22351a7 (patch) | |
tree | 7dc0c523d1025d8c5da2c0157221145017c695d1 /gr-blocks/lib/message_strobe_random_impl.h | |
parent | 0294d120bae1efaf7d34e45efcadcc2298c65c94 (diff) |
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
Diffstat (limited to 'gr-blocks/lib/message_strobe_random_impl.h')
-rw-r--r-- | gr-blocks/lib/message_strobe_random_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/message_strobe_random_impl.h b/gr-blocks/lib/message_strobe_random_impl.h index 277c1134af..32eddb592c 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; |