diff options
author | Hans Bolinder <[email protected]> | 2015-08-18 10:21:47 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-08-18 10:21:47 +0200 |
commit | b907f68075bdb5c6e95fd9503b761842b178486d (patch) | |
tree | 1f99692f18d59fb28bd4dbb3382bb48d43fb1413 /lib | |
parent | 19ed951b890565445927c0343caab7cc17791086 (diff) | |
parent | 132b23a4511dd6f76366bd61eb52d1d11ef5ef35 (diff) | |
download | otp-b907f68075bdb5c6e95fd9503b761842b178486d.tar.gz otp-b907f68075bdb5c6e95fd9503b761842b178486d.tar.bz2 otp-b907f68075bdb5c6e95fd9503b761842b178486d.zip |
Merge branch 'maint'
* maint:
dialyzer: Use the recently added orddict:orddict/2 type
Diffstat (limited to 'lib')
-rw-r--r-- | lib/dialyzer/src/dialyzer_contracts.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dialyzer/src/dialyzer_contracts.erl b/lib/dialyzer/src/dialyzer_contracts.erl index 0c29d524b5..1079c2e09b 100644 --- a/lib/dialyzer/src/dialyzer_contracts.erl +++ b/lib/dialyzer/src/dialyzer_contracts.erl @@ -46,7 +46,7 @@ -type file_contract() :: {file_line(), #contract{}, Extra :: [_]}. --type plt_contracts() :: [{mfa(), #contract{}}]. % actually, an orddict() +-type plt_contracts() :: orddict:orddict(mfa(), #contract{}). %%----------------------------------------------------------------------- %% Internal record for contracts whose components have not been processed |