Skip to content

Commit

Permalink
api: Changed value of MMK_MATCHER_BIT_CMP to be in the range of signe…
Browse files Browse the repository at this point in the history
…d int. Fixes #1
  • Loading branch information
Snaipe committed May 18, 2016
1 parent b9a277d commit b9c177f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/mimick/matcher.h
Expand Up @@ -33,7 +33,7 @@
# pragma warning (disable: 4116)
# endif

# define MMK_MATCHER_BIT_CMP (1 << (8 * sizeof (int) - 1))
# define MMK_MATCHER_BIT_CMP (1 << (8 * sizeof (int) - 2))
# define MMK_MATCHER_BIT_EQ (1 << 1)
# define MMK_MATCHER_BIT_LT (1 << 2)
# define MMK_MATCHER_BIT_GT (1 << 3)
Expand Down

0 comments on commit b9c177f

Please sign in to comment.