mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 20:58:15 +00:00
Remove dead variable
This commit is contained in:
@@ -850,8 +850,6 @@ void init_checker_info(CheckerInfo *i) {
|
|||||||
array_init(&i->identifier_uses, a);
|
array_init(&i->identifier_uses, a);
|
||||||
}
|
}
|
||||||
|
|
||||||
map_init(&i->atom_op_map, a);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void destroy_checker_info(CheckerInfo *i) {
|
void destroy_checker_info(CheckerInfo *i) {
|
||||||
@@ -869,8 +867,6 @@ void destroy_checker_info(CheckerInfo *i) {
|
|||||||
array_free(&i->identifier_uses);
|
array_free(&i->identifier_uses);
|
||||||
array_free(&i->required_foreign_imports_through_force);
|
array_free(&i->required_foreign_imports_through_force);
|
||||||
array_free(&i->required_global_variables);
|
array_free(&i->required_global_variables);
|
||||||
|
|
||||||
map_destroy(&i->atom_op_map);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CheckerContext make_checker_context(Checker *c) {
|
CheckerContext make_checker_context(Checker *c) {
|
||||||
|
|||||||
@@ -290,8 +290,6 @@ struct CheckerInfo {
|
|||||||
Array<Entity *> required_foreign_imports_through_force;
|
Array<Entity *> required_foreign_imports_through_force;
|
||||||
Array<Entity *> required_global_variables;
|
Array<Entity *> required_global_variables;
|
||||||
|
|
||||||
Map<AtomOpMapEntry> atom_op_map; // Key: Ast *
|
|
||||||
|
|
||||||
Array<Entity *> testing_procedures;
|
Array<Entity *> testing_procedures;
|
||||||
|
|
||||||
bool allow_identifier_uses;
|
bool allow_identifier_uses;
|
||||||
|
|||||||
Reference in New Issue
Block a user