diff options
author | Hans Bolinder <[email protected]> | 2012-10-05 09:16:39 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2012-10-05 09:16:39 +0200 |
commit | f1301581ce83ce80426d3fcf09cf12f8527a458b (patch) | |
tree | 173b459097a437ff078a6f0d7313e9b197570dc6 /lib/stdlib/src/dets.erl | |
parent | a24c49aec663f19092cf0d2062af19523666d291 (diff) | |
download | otp-f1301581ce83ce80426d3fcf09cf12f8527a458b.tar.gz otp-f1301581ce83ce80426d3fcf09cf12f8527a458b.tar.bz2 otp-f1301581ce83ce80426d3fcf09cf12f8527a458b.zip |
Fix Dialyzer warnings
Opaque types need to be exported.
Diffstat (limited to 'lib/stdlib/src/dets.erl')
-rw-r--r-- | lib/stdlib/src/dets.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/stdlib/src/dets.erl b/lib/stdlib/src/dets.erl index 6a937f8fa2..845fae4bf4 100644 --- a/lib/stdlib/src/dets.erl +++ b/lib/stdlib/src/dets.erl @@ -88,7 +88,8 @@ %% Not documented, or not ready for publication. -export([lookup_keys/2]). --export_type([tab_name/0]). +-export_type([bindings_cont/0, cont/0, object_cont/0, select_cont/0, + tab_name/0]). -compile({inline, [{einval,2},{badarg,2},{undefined,1}, {badarg_exit,2},{lookup_reply,2}]}). |