[Groonga-commit] groonga/groonga [master] Remove bad long type suffixes (L).

Back to archive index

null+****@clear***** null+****@clear*****
2012年 3月 28日 (水) 11:21:53 JST


Susumu Yata	2012-03-28 11:21:53 +0900 (Wed, 28 Mar 2012)

  New Revision: 84d8fec0d4087ff081139b30426d4b480707c000

  Log:
    Remove bad long type suffixes (L).

  Modified files:
    lib/hash.h

  Modified: lib/hash.h (+3 -3)
===================================================================
--- lib/hash.h    2012-03-27 17:56:54 +0900 (ce87fbd)
+++ lib/hash.h    2012-03-28 11:21:53 +0900 (d1aa932)
@@ -31,9 +31,9 @@ extern "C" {
 
 /**** grn_tiny_array ****/
 
-#define GRN_TINY_ARRAY_CLEAR      (1L<<0)
-#define GRN_TINY_ARRAY_THREADSAFE (1L<<1)
-#define GRN_TINY_ARRAY_USE_MALLOC (1L<<2)
+#define GRN_TINY_ARRAY_CLEAR      (1<<0)
+#define GRN_TINY_ARRAY_THREADSAFE (1<<1)
+#define GRN_TINY_ARRAY_USE_MALLOC (1<<2)
 
 #define GRN_TINY_ARRAY_W    0
 #define GRN_TINY_ARRAY_R(i) (1<<((i)<<GRN_TINY_ARRAY_W))




Groonga-commit メーリングリストの案内
Back to archive index