mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-15 05:44:58 +00:00
Clean up in unused module imports in the Mercury system detected
Estimated hours taken: 3 Branches: main Clean up in unused module imports in the Mercury system detected by --warn-unused-imports. analysis/*.m: browser/*.m: deep_profiler/*.m: compiler/*.m: library/*.m: mdbcomp/*.m: profiler/*.m: slice/*.m: Remove unused module imports. Fix some minor departures from our coding standards. analysis/Mercury.options: browser/Mercury.options: deep_profiler/Mercury.options: compiler/Mercury.options: library/Mercury.options: mdbcomp/Mercury.options: profiler/Mercury.options: slice/Mercury.options: Set --no-warn-unused-imports for those modules that are used as packages or otherwise break --warn-unused-imports, e.g. because they contain predicates with both foreign and Mercury clauses and some of the imports only depend on the latter.
This commit is contained in:
@@ -24,6 +24,8 @@
|
||||
:- import_module parse_tree.
|
||||
:- import_module parse_tree.prog_data.
|
||||
|
||||
%-----------------------------------------------------------------------------%
|
||||
|
||||
% perform_context_reduction(OrigTypeAssignSet, !Info) is true
|
||||
% iff either
|
||||
% (a) !:Info is the typecheck_info that results from performing
|
||||
@@ -98,7 +100,6 @@
|
||||
:- import_module list.
|
||||
:- import_module map.
|
||||
:- import_module multi_map.
|
||||
:- import_module pair.
|
||||
:- import_module set.
|
||||
:- import_module svmap.
|
||||
:- import_module term.
|
||||
|
||||
Reference in New Issue
Block a user