https://github.com/N-BodyShop/changa
Raw File
Tip revision: ad57347247670d23d6eb6a46ad53efb75a5ae796 authored by Lukasz Wesolowski on 18 June 2015, 08:11:11 UTC
Bug fixes
Tip revision: ad57347
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