mirror of https://github.com/ecmwf/eccodes.git
Dead code removal
This commit is contained in:
parent
e9f9a3286f
commit
11b69c2954
|
@ -14,41 +14,29 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void f_sizeof_(void *x, void *y, int *size) {
|
||||||
void f_sizeof_(void *x,void *y, int *size) {
|
|
||||||
*size=((char*)y)-((char*)x);
|
*size=((char*)y)-((char*)x);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void check_double_(double *x, double* y, char* ret) {
|
||||||
void check_double(double *x,double *y,char* ret) {
|
|
||||||
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
||||||
}
|
}
|
||||||
void check_double_(double *x,double *y,char* ret) {check_double(x,y,ret);}
|
|
||||||
|
|
||||||
|
void check_float_(float* x, float* y, char* ret) {
|
||||||
void check_float(float *x,float *y,char* ret) {
|
|
||||||
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
||||||
}
|
}
|
||||||
void check_float_(float *x,float *y,char* ret) { check_float(x,y,ret); }
|
|
||||||
|
|
||||||
|
void check_int_(int* x, int* y, char* ret) {
|
||||||
void check_int(int *x,int *y,char* ret) {
|
|
||||||
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
||||||
}
|
}
|
||||||
void check_int_(int *x,int *y,char* ret) { check_int(x,y,ret); }
|
|
||||||
|
|
||||||
|
void check_long_(long* x, long * y, char* ret) {
|
||||||
void check_long(long *x,long *y,char* ret) {
|
|
||||||
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
||||||
}
|
}
|
||||||
void check_long_(long *x,long *y,char* ret) {check_long(x,y,ret);}
|
|
||||||
|
|
||||||
|
void check_size_t_(size_t* x, size_t* y, char* ret) {
|
||||||
void check_size_t(size_t *x,size_t *y,char* ret) {
|
|
||||||
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
*ret = ((char*)y)-((char*)x) == sizeof(*x) ? 't' : 'f';
|
||||||
}
|
}
|
||||||
void check_size_t_(size_t *x,size_t *y,char* ret) {check_size_t(x,y,ret);}
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue