mirror of https://github.com/ecmwf/eccodes.git
Cleanup
This commit is contained in:
parent
98c83ee52c
commit
4a5d65dadc
|
@ -78,6 +78,7 @@ int grib_is_missing_internal(grib_accessor* a)
|
|||
Assert(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int grib_pack_double(grib_accessor* a, const double* v, size_t *len )
|
||||
{
|
||||
grib_accessor_class *c = a->cclass;
|
||||
|
@ -662,7 +663,7 @@ int grib_accessor_clear_attributes(grib_accessor* a)
|
|||
}
|
||||
return 0;
|
||||
}
|
||||
*/
|
||||
*/
|
||||
|
||||
int grib_accessor_add_attribute(grib_accessor* a,grib_accessor* attr,int nest_if_clash)
|
||||
{
|
||||
|
@ -829,8 +830,8 @@ void grib_accessors_list_delete(grib_context* c,grib_accessors_list* al)
|
|||
|
||||
while (al) {
|
||||
tmp=al->next;
|
||||
/*grib_accessor_delete(c, al->accessor);*/
|
||||
grib_context_free(c,al);
|
||||
al=tmp;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
/* grib level */
|
||||
|
||||
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_accessor_class.h"
|
||||
|
||||
#if GRIB_PTHREADS
|
||||
|
@ -51,7 +51,8 @@ struct table_entry
|
|||
grib_accessor_class **cclass;
|
||||
};
|
||||
|
||||
static GRIB_INLINE int grib_inline_strcmp(const char* a,const char* b) {
|
||||
static GRIB_INLINE int grib_inline_strcmp(const char* a,const char* b)
|
||||
{
|
||||
if (*a != *b) return 1;
|
||||
while((*a!=0 && *b!=0) && *(a) == *(b) ) {a++;b++;}
|
||||
return (*a==0 && *b==0) ? 0 : 1;
|
||||
|
@ -59,7 +60,7 @@ static GRIB_INLINE int grib_inline_strcmp(const char* a,const char* b) {
|
|||
|
||||
static struct table_entry table[] =
|
||||
{
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_accessor_factory.h"
|
||||
};
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define NUMBER(x) (sizeof(x)/sizeof(x[0]))
|
||||
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_box_class.h"
|
||||
|
||||
struct table_entry
|
||||
|
@ -23,7 +23,7 @@ struct table_entry
|
|||
|
||||
static struct table_entry table[] =
|
||||
{
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_box_factory.h"
|
||||
};
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "grib_api_internal.h"
|
||||
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_dumper_class.h"
|
||||
|
||||
|
||||
|
@ -23,7 +23,7 @@ struct table_entry
|
|||
|
||||
static struct table_entry table[] =
|
||||
{
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_dumper_factory.h"
|
||||
};
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#define NUMBER(x) (sizeof(x)/sizeof(x[0]))
|
||||
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_iterator_class.h"
|
||||
|
||||
struct table_entry
|
||||
|
@ -29,7 +29,7 @@ struct table_entry
|
|||
|
||||
static struct table_entry table[] =
|
||||
{
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_iterator_factory.h"
|
||||
};
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#define NUMBER(x) (sizeof(x)/sizeof(x[0]))
|
||||
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_nearest_class.h"
|
||||
|
||||
struct table_entry
|
||||
|
@ -28,7 +28,7 @@ struct table_entry
|
|||
|
||||
static struct table_entry table[] =
|
||||
{
|
||||
/* This file is generated my ./make_class.pl */
|
||||
/* This file is generated by ./make_class.pl */
|
||||
#include "grib_nearest_factory.h"
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue