Generally include <cmath>
This commit is contained in:
parent
2558aa33fa
commit
532aec85e5
2 changed files with 7 additions and 3 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2006-11-30 Jochen Küpper <jochen@fhi-berlin.mpg.de>
|
||||
|
||||
* eoRNG.h: Generally include <cmath>
|
||||
|
||||
2006-11-16 Jochen Küpper <jochen@fhi-berlin.mpg.de>
|
||||
|
||||
* eoParser.h (eoParser::getORcreateParam): Make this a real if-then-else
|
||||
|
|
|
|||
|
|
@ -31,12 +31,11 @@ Contact: todos@geneura.ugr.es, http://geneura.ugr.es
|
|||
// and see what's best for you.
|
||||
//
|
||||
// The C99-standard defines uint32_t to be declared in stdint.h, but some
|
||||
// systmes don't have that and implement it in inttypes.h.
|
||||
// systems don't have that and implement it in inttypes.h.
|
||||
|
||||
// first if check added for MSVC by Jeroen Eggermont 20-11-2006, needed for MSVC 2003 (and 2005)
|
||||
# if (defined _MSC_VER)
|
||||
typedef unsigned long uint32_t;
|
||||
#include <cmath>
|
||||
#else
|
||||
#if (! defined __sun)
|
||||
#include <stdint.h>
|
||||
|
|
@ -45,11 +44,12 @@ typedef unsigned long uint32_t;
|
|||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
#include <cmath>
|
||||
#include <vector>
|
||||
#include "eoPersistent.h"
|
||||
#include "eoObject.h"
|
||||
|
||||
|
||||
/** Random Number Generator
|
||||
|
||||
@class eoRng eoRNG.h utils/eoRNG.h
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue