Skip to content

Commit d38f2c9

Browse files
Resolve a conflict (#9421)
1 parent db70c34 commit d38f2c9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

deps/rabbit_common/src/rabbit_numerical.erl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,7 @@
3030
%% human-readable output, or compact ASCII serializations for floats.
3131
digits(N) when is_integer(N) ->
3232
integer_to_list(N);
33-
<<<<<<< HEAD
34-
digits(0.0) ->
35-
=======
3633
digits(N) when N =:= +0.0 orelse N =:= -0.0 ->
37-
>>>>>>> 5a2ef73595 (Negative zero fix)
3834
"0.0";
3935
digits(Float) ->
4036
{Frac1, Exp1} = frexp_int(Float),

0 commit comments

Comments
 (0)