Use C++ style cast.

This commit is contained in:
kuepper 2006-12-01 20:40:54 +00:00
commit e222eacd74
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2006-12-01 Jochen Küpper <jochen@fhi-berlin.mpg.de>
* eoRNG.cpp: Use C++ style cast.
* Makefile.am: Add missing header for distribution.
2006-11-30 Jochen Küpper <jochen@fhi-berlin.mpg.de>

View file

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