From: Felix Morgner Date: Tue, 22 Apr 2014 09:08:59 +0000 (+0200) Subject: fixed wrong comparison operator X-Git-Url: http://git.code-monkey.de/?a=commitdiff_plain;ds=sidebyside;h=4e888c2117d35b588466f46faaef99df01ba94fe;p=umurmur.git fixed wrong comparison operator As mentioned by Martin, i now fixed the comparison to be logically corret. --- diff --git a/src/types.h b/src/types.h index 91d0afa..a1c77b0 100644 --- a/src/types.h +++ b/src/types.h @@ -1,7 +1,7 @@ #ifndef TYPES_H_90878954 #define TYPES_H_90878954 -#if __STDC_VERSION__ == 199901L +#if __STDC_VERSION__ >= 199901L #include typedef bool bool_t;