Fix build for Erlang < 20
This commit is contained in:
parent
fde61fe7aa
commit
c2bcd16bf5
@ -436,7 +436,7 @@ to_type({Type, _DefaultArg}, Arg) ->
|
|||||||
to_type(binary, Arg) ->
|
to_type(binary, Arg) ->
|
||||||
list_to_binary(Arg);
|
list_to_binary(Arg);
|
||||||
to_type(utf8_binary, Arg) ->
|
to_type(utf8_binary, Arg) ->
|
||||||
unicode:characters_to_nfc_binary(Arg);
|
unicode:characters_to_binary(Arg);
|
||||||
to_type(atom, Arg) ->
|
to_type(atom, Arg) ->
|
||||||
list_to_atom(Arg);
|
list_to_atom(Arg);
|
||||||
to_type(integer, Arg) ->
|
to_type(integer, Arg) ->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user