https://github.com/N-BodyShop/changa
Raw File
Tip revision: 6070482202ec25271ea74f844a0b14ff4fa6b5ee authored by Lukasz Wesolowski on 03 March 2015, 09:44:45 UTC
Further bug fixes
Tip revision: 6070482
cosmoType.h
#ifndef __COSMOTYPE_H__
#define __COSMOTYPE_H__

/* #define COSMO_FLOAT */

#ifdef COSMO_FLOAT
#define CONVERT_TO_COSMO_TYPE (float)
typedef float cosmoType;
#define COSMO_CONST(val) val##f
#else
#define CONVERT_TO_COSMO_TYPE
typedef double cosmoType;
#define COSMO_CONST(val) val
#endif

#endif
back to top