aboutsummaryrefslogtreecommitdiffstats
path: root/lib/reltool
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2016-08-24 15:02:01 +0200
committerSiri Hansen <[email protected]>2016-08-24 15:02:01 +0200
commitc5c8737556a2d8b3663d9e8d4853acce75806e7c (patch)
treebfc4b2fb2acc5570efe1131b4f45095a06976de6 /lib/reltool
parent5492ce9951aced8686dbef99d0693e7c6da50c7d (diff)
downloadotp-c5c8737556a2d8b3663d9e8d4853acce75806e7c.tar.gz
otp-c5c8737556a2d8b3663d9e8d4853acce75806e7c.tar.bz2
otp-c5c8737556a2d8b3663d9e8d4853acce75806e7c.zip
[reltool] Fix dialyzer warnings introduced by OTP-11993
Diffstat (limited to 'lib/reltool')
-rw-r--r--lib/reltool/src/reltool.hrl26
1 files changed, 13 insertions, 13 deletions
diff --git a/lib/reltool/src/reltool.hrl b/lib/reltool/src/reltool.hrl
index 9ac22b9450..89b5f3a997 100644
--- a/lib/reltool/src/reltool.hrl
+++ b/lib/reltool/src/reltool.hrl
@@ -154,19 +154,19 @@
-record(app_info,
{
- description = "" :: string(),
- id = "" :: string(),
- vsn = "" :: app_vsn(),
- modules = [] :: [mod_name()],
- maxP = infinity :: integer() | infinity,
- maxT = infinity :: integer() | infinity,
- registered = [] :: [atom()],
- incl_apps = [] :: [app_name()],
- applications = [] :: [app_name()],
- env = [] :: [{atom(), term()}],
- mod = undefined :: {mod_name(), [term()]} | undefined,
- start_phases = undefined :: [{atom(), term()}] | undefined,
- runtime_dependencies = [] :: [string()]
+ description = "" :: '_' | string(),
+ id = "" :: '_' | string(),
+ vsn = "" :: '_' | app_vsn(),
+ modules = [] :: '_' | [mod_name()],
+ maxP = infinity :: '_' | integer() | infinity,
+ maxT = infinity :: '_' | integer() | infinity,
+ registered = [] :: '_' | [atom()],
+ incl_apps = [] :: '_' | '$3' | [app_name()],
+ applications = [] :: '_' | '$2' | [app_name()],
+ env = [] :: '_' | [{atom(), term()}],
+ mod = undefined :: '_' | {mod_name(), [term()]} | undefined,
+ start_phases = undefined :: '_' | [{atom(), term()}] | undefined,
+ runtime_dependencies = [] :: '_' | [string()]
}).
-record(regexp, {source, compiled}).