mirror of https://github.com/ecmwf/eccodes.git
Const correctness and cppcheck warnings
This commit is contained in:
parent
71cabbf6dd
commit
12a2484c13
|
@ -35,7 +35,7 @@
|
|||
#include "grib_accessor_class.h"
|
||||
|
||||
#line 6 "accessor_class_list.gperf"
|
||||
struct accessor_class_hash { char *name; grib_accessor_class **cclass;};
|
||||
struct accessor_class_hash { const char *name; grib_accessor_class **cclass;};
|
||||
|
||||
#define TOTAL_KEYWORDS 205
|
||||
#define MIN_WORD_LENGTH 1
|
||||
|
|
|
@ -453,7 +453,7 @@ grib_context* grib_context_get_default()
|
|||
|
||||
#ifdef ECCODES_SAMPLES_PATH
|
||||
if (!default_grib_context.grib_samples_path)
|
||||
default_grib_context.grib_samples_path = ECCODES_SAMPLES_PATH;
|
||||
default_grib_context.grib_samples_path = (char*)ECCODES_SAMPLES_PATH;
|
||||
#endif
|
||||
|
||||
default_grib_context.grib_definition_files_path = codes_getenv("ECCODES_DEFINITION_PATH");
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
|
||||
#include "grib_api_internal.h"
|
||||
struct grib_keys_hash { char* name; int id;};
|
||||
struct grib_keys_hash { const char* name; int id;};
|
||||
#include <string.h>
|
||||
|
||||
#define TOTAL_KEYWORDS 2535
|
||||
|
|
|
@ -6,7 +6,7 @@ cat > accessor_class_list.gperf <<EOF
|
|||
#include "grib_accessor_class.h"
|
||||
|
||||
%}
|
||||
struct accessor_class_hash { char *name; grib_accessor_class **cclass;};
|
||||
struct accessor_class_hash { const char *name; grib_accessor_class **cclass;};
|
||||
%%
|
||||
EOF
|
||||
|
||||
|
|
Loading…
Reference in New Issue