diff options
author | Sverker Eriksson <[email protected]> | 2014-01-13 22:15:13 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-01-29 11:08:44 +0100 |
commit | c8ecb6962a923ceb0b7e599d22adef773d042e4a (patch) | |
tree | 74de19f12cdacdc0bd94a0e20dd2ac1a02eefe9c /erts/emulator/beam/erl_nif.c | |
parent | 228ee23186639c8b66be8ed26def7c8e9cb09059 (diff) | |
download | otp-c8ecb6962a923ceb0b7e599d22adef773d042e4a.tar.gz otp-c8ecb6962a923ceb0b7e599d22adef773d042e4a.tar.bz2 otp-c8ecb6962a923ceb0b7e599d22adef773d042e4a.zip |
erts: Remove enif_find_map_value
as it does the same thing as enif_get_map_value.
Replace with placeholder to be ABI backward compatible on Windows
as long as enif_find_map_value is not called.
Diffstat (limited to 'erts/emulator/beam/erl_nif.c')
-rw-r--r-- | erts/emulator/beam/erl_nif.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/erts/emulator/beam/erl_nif.c b/erts/emulator/beam/erl_nif.c index c683847aaa..1a539c730f 100644 --- a/erts/emulator/beam/erl_nif.c +++ b/erts/emulator/beam/erl_nif.c @@ -1,7 +1,7 @@ /* * %CopyrightBegin% * - * Copyright Ericsson AB 2009-2013. All Rights Reserved. + * Copyright Ericsson AB 2009-2014. All Rights Reserved. * * The contents of this file are subject to the Erlang Public License, * Version 1.1, (the "License"); you may not use this file except in @@ -1663,17 +1663,6 @@ int enif_get_map_value(ErlNifEnv* env, return erts_maps_get(key, map, value); } -int enif_find_map_value(ErlNifEnv* env, - Eterm map, - Eterm key, - Eterm *value) -{ - if (is_not_map(map)) { - return 0; - } - return erts_maps_get(key, map, value); -} - int enif_make_map_update(ErlNifEnv* env, Eterm map_in, Eterm key, |