aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2016-01-13 15:13:02 +0100
committerSiri Hansen <[email protected]>2016-01-13 15:43:53 +0100
commita42724e6740df6290ec7f7dceb09db4f217697d8 (patch)
treee36b4fad60df75b65bb4093ee7cc6be7796e9a1a /lib/stdlib
parent5a874a9e58e09a894f36ab81a0eef46e1fc27cd0 (diff)
downloadotp-a42724e6740df6290ec7f7dceb09db4f217697d8.tar.gz
otp-a42724e6740df6290ec7f7dceb09db4f217697d8.tar.bz2
otp-a42724e6740df6290ec7f7dceb09db4f217697d8.zip
Deprecate module 'overload' in SASL
The module is deprected and will be removed in OTP 19. The reason is that the module is not used, and that we se no obvious use case for it.
Diffstat (limited to 'lib/stdlib')
-rw-r--r--lib/stdlib/src/otp_internal.erl3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl
index 2d77888512..c254ab1e46 100644
--- a/lib/stdlib/src/otp_internal.erl
+++ b/lib/stdlib/src/otp_internal.erl
@@ -648,6 +648,9 @@ obsolete_1(httpd_conf, is_file, 1) ->
obsolete_1(httpd_conf, make_integer, 1) ->
{deprecated, "deprecated; use erlang:list_to_integer/1 instead"};
+obsolete_1(overload, _, _) ->
+ {deprecated, "deprecated; will be removed in OTP 19"};
+
obsolete_1(_, _, _) ->
no.