https://github.com/N-BodyShop/changa
Raw File
Tip revision: 175440b9ee57bfcf2b4ef35d59be8b011632cd4b authored by Tim Haines on 22 July 2016, 03:46:46 UTC
Ignore Eclipse and autoconf cache folders
Tip revision: 175440b
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