diff options
author | Hans Bolinder <[email protected]> | 2014-03-24 09:14:19 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2014-03-24 09:14:19 +0100 |
commit | f725839f502c90ee14f5e2fb48a2393c29f0532d (patch) | |
tree | 3571434eed96b131940f55b8dc285117e4449fa7 /lib/stdlib/src/dict.erl | |
parent | c2b4eab25c907f453a394d382c04cd04e6c06b49 (diff) | |
parent | 828339916dbe2d3a15ff1b959a7209825f94f83d (diff) | |
download | otp-f725839f502c90ee14f5e2fb48a2393c29f0532d.tar.gz otp-f725839f502c90ee14f5e2fb48a2393c29f0532d.tar.bz2 otp-f725839f502c90ee14f5e2fb48a2393c29f0532d.zip |
Merge branch 'hb/dialyzer/deprecate_types/OTP-10342'
* hb/dialyzer/deprecate_types/OTP-10342:
hipe: Add a few clauses for maps in erl_types
stdlib: Add more types to epp and erl_lint
Diffstat (limited to 'lib/stdlib/src/dict.erl')
-rw-r--r-- | lib/stdlib/src/dict.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/stdlib/src/dict.erl b/lib/stdlib/src/dict.erl index 6088e1a2dd..cf8fb3114a 100644 --- a/lib/stdlib/src/dict.erl +++ b/lib/stdlib/src/dict.erl @@ -55,8 +55,7 @@ -define(exp_size, (?seg_size * ?expand_load)). -define(con_size, (?seg_size * ?contract_load)). --type segs(K, V) :: tuple() - | {K, V}. % dummy +-type segs(_Key, _Value) :: tuple(). %% Define a hashtable. The default values are the standard ones. -record(dict, |