Skip to content

Commit

Permalink
update MsgPackConstant
Browse files Browse the repository at this point in the history
  • Loading branch information
tvd12 committed May 8, 2022
1 parent d45796c commit 69d66dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions codec/MsgPackConstant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ public sealed class MsgPackConstant
public static readonly long MAX_UINT32 = EzyMath.bin2long(32);

public static readonly long MIN_NEGATIVE_FIXINT = -EzyMath.bin2int(5) - 1;
public static readonly long MIN_INT8 = -EzyMath.bin2int(7);
public static readonly long MIN_INT16 = -EzyMath.bin2int(15);
public static readonly long MIN_INT32 = -EzyMath.bin2int(31);
public static readonly long MIN_INT8 = -EzyMath.bin2int(7) - 1;
public static readonly long MIN_INT16 = -EzyMath.bin2int(15) - 1;
public static readonly long MIN_INT32 = -EzyMath.bin2int(31) - 1;

public static readonly int MAX_FIXMAP_SIZE = EzyMath.bin2int(4);
public static readonly int MAX_FIXARRAY_SIZE = EzyMath.bin2int(4);
Expand Down

0 comments on commit 69d66dc

Please sign in to comment.