diff options
author | Björn Gustavsson <[email protected]> | 2011-11-28 13:47:47 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-11-28 13:47:47 +0100 |
commit | 3bcf603c4790768d60f57fb2fdfb8efa47dad9a3 (patch) | |
tree | ee6c334352205dba71e31eb3f9ecd7a29a0dea8f /lib/stdlib/src/erl_lint.erl | |
parent | 4fee3925d969a42088af74dd02a791bb8e27fd9b (diff) | |
parent | 8abce7f45cd032bb20f004701e13cf641d32fef7 (diff) | |
download | otp-3bcf603c4790768d60f57fb2fdfb8efa47dad9a3.tar.gz otp-3bcf603c4790768d60f57fb2fdfb8efa47dad9a3.tar.bz2 otp-3bcf603c4790768d60f57fb2fdfb8efa47dad9a3.zip |
Merge branch 'bjorn/major-release-cleanups'
* bjorn/major-release-cleanups:
observer tests: Test compatibility with R13, not R12
emulator tests: Test compatibility with R13, not R12
Teach the compiler the 'r14' option
erl_lint: The types introduced in R12B-5 are no longer "newly introduced"
otp_internal: Stop warning for functions removed in R12 or earlier
Conflicts:
lib/stdlib/src/otp_internal.erl
Diffstat (limited to 'lib/stdlib/src/erl_lint.erl')
-rw-r--r-- | lib/stdlib/src/erl_lint.erl | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/stdlib/src/erl_lint.erl b/lib/stdlib/src/erl_lint.erl index 5d45260fe9..e5adb84932 100644 --- a/lib/stdlib/src/erl_lint.erl +++ b/lib/stdlib/src/erl_lint.erl @@ -2767,12 +2767,6 @@ default_types() -> {var, 1}], dict:from_list([{T, -1} || T <- DefTypes]). -%% R12B-5 -is_newly_introduced_builtin_type({module, 0}) -> true; -is_newly_introduced_builtin_type({node, 0}) -> true; -is_newly_introduced_builtin_type({nonempty_string, 0}) -> true; -is_newly_introduced_builtin_type({term, 0}) -> true; -is_newly_introduced_builtin_type({timeout, 0}) -> true; %% R13 is_newly_introduced_builtin_type({arity, 0}) -> true; is_newly_introduced_builtin_type({array, 0}) -> true; % opaque |