You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, unused_hrls might retrun some false negatives.
For instance, it may think that lib/app1/include/header.hrl is used if lib/app2/src/module.erl contains -include("header.hrl"). when, in reality, module.erl is including lib/app2/include/header.erl or lib/app2/src/header.hrl.
To prevent this situation we need to properly retrieve the absolute path of "header.hrl" in the same way that the Erlang pre-processor retrieves it.
The text was updated successfully, but these errors were encountered:
Currently,
unused_hrls
might retrun some false negatives.For instance, it may think that
lib/app1/include/header.hrl
is used iflib/app2/src/module.erl
contains-include("header.hrl").
when, in reality,module.erl
is includinglib/app2/include/header.erl
orlib/app2/src/header.hrl
.To prevent this situation we need to properly retrieve the absolute path of
"header.hrl"
in the same way that the Erlang pre-processor retrieves it.The text was updated successfully, but these errors were encountered: