Skip to main content

W0037 - Unspecific include

Weak Warning

-include("some_header_from_app_a.hrl").
%% ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 💡 weak: Unspecific include.

becomes

-include("app_a/include/some_header_from_app_a.hrl").

Explanation

This weak warning indicates an include that can be made more specific.