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/erl_scan.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/erl_scan.erl')
-rw-r--r-- | lib/stdlib/src/erl_scan.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/erl_scan.erl b/lib/stdlib/src/erl_scan.erl index 8e59e01f48..0c8735bb6d 100644 --- a/lib/stdlib/src/erl_scan.erl +++ b/lib/stdlib/src/erl_scan.erl @@ -55,7 +55,7 @@ token_info/1,token_info/2, attributes_info/1,attributes_info/2,set_attribute/3]). --export_type([error_info/0, line/0, tokens_result/0]). +-export_type([error_info/0, line/0, return_cont/0, tokens_result/0]). %%% %%% Defines and type definitions |