Dead code removal: Unused data members

This commit is contained in:
shahramn 2024-04-04 15:21:42 +01:00
parent ebc396fa87
commit cefa5b4885
3 changed files with 0 additions and 3 deletions

View File

@ -823,7 +823,6 @@ struct grib_handle
grib_context* context; /** < context attached to this handle */ grib_context* context; /** < context attached to this handle */
grib_buffer* buffer; /** < buffer attached to the handle */ grib_buffer* buffer; /** < buffer attached to the handle */
grib_section* root; /** the root section*/ grib_section* root; /** the root section*/
grib_section* rules; /** the rules section*/
grib_dependency* dependencies; /** List of dependencies */ grib_dependency* dependencies; /** List of dependencies */
grib_handle* main; /** Used during reparsing */ grib_handle* main; /** Used during reparsing */
grib_handle* kid; /** Used during reparsing */ grib_handle* kid; /** Used during reparsing */

View File

@ -77,7 +77,6 @@ static grib_runtime_options global_options = {
0, /* grib_tools_file* infile */ 0, /* grib_tools_file* infile */
0, /* grib_tools_file* outfile */ 0, /* grib_tools_file* outfile */
0, /* grib_action* action */ 0, /* grib_action* action */
0, /* grib_rule* rules */
0, /* int dump_flags; */ 0, /* int dump_flags; */
0, /* char* dump_mode; */ 0, /* char* dump_mode; */
0, /* repack */ 0, /* repack */

View File

@ -137,7 +137,6 @@ typedef struct grib_runtime_options
grib_tools_file* infile; grib_tools_file* infile;
grib_tools_file* outfile; grib_tools_file* outfile;
grib_action* action; grib_action* action;
grib_rule* rules;
int dump_flags; int dump_flags;
char* dump_mode; char* dump_mode;
int repack; int repack;