Replaced float vars with double to avoid conversion warnings on VS 8.0

This commit is contained in:
okoenig 2006-12-01 08:42:54 +00:00
commit 4c76c89592
3 changed files with 6 additions and 6 deletions

View file

@ -9,6 +9,6 @@
namespace eo
{
/// The Global random number generator.
eoRng rng(time(0));
eoRng rng( (uint32_t) time(0) );
}