supressed compiler warning in jsx_eep0018 about an unused variable
This commit is contained in:
parent
174a6dedb8
commit
cc5537165a
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ encode_key_repeats([Key], SoFar) -> encode_key_repeats(Key, SoFar, 0).
|
|||
|
||||
encode_key_repeats(Key, [Key|_], 0) -> true;
|
||||
encode_key_repeats(Key, [end_object|Rest], Level) -> encode_key_repeats(Key, Rest, Level + 1);
|
||||
encode_key_repeats(Key, [start_object|_], 0) -> false;
|
||||
encode_key_repeats(_, [start_object|_], 0) -> false;
|
||||
encode_key_repeats(Key, [start_object|Rest], Level) -> encode_key_repeats(Key, Rest, Level - 1);
|
||||
encode_key_repeats(Key, [_|Rest], Level) -> encode_key_repeats(Key, Rest, Level);
|
||||
encode_key_repeats(_, [], 0) -> false.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue