Skip to content

Commit 6ee6252

Browse files
committed
CR
Signed-off-by: Mateusz Front <mateusz.front@swmansion.com>
1 parent c3b2891 commit 6ee6252

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5555
- Added `supervisor:which_children/1` and `supervisor:count_children/1`
5656
- Added `monitored_by` in `process_info/2`
5757
- Added mock implementation for `current_stacktrace` in `process_info`
58-
- Added `lists:keyfind`, `lists:keymember`, `lists:member` and `erlang:list_to_bitstring`
58+
- Added `erlang:list_to_bitstring`
59+
- Reimplemented `lists:keyfind`, `lists:keymember` and `lists:member` as NIFs
5960

6061
### Changed
6162

src/libAtomVM/nifs.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -784,8 +784,7 @@ static const struct Nif list_to_bitstring_nif = {
784784
.base.type = NIFFunctionType,
785785
.nif_ptr = nif_erlang_list_to_bitstring_1
786786
};
787-
static const struct Nif zlib_compress_nif =
788-
{
787+
static const struct Nif zlib_compress_nif = {
789788
.base.type = NIFFunctionType,
790789
.nif_ptr = nif_zlib_compress_1
791790
};

0 commit comments

Comments
 (0)