Masafumi Yokoyama
null+****@clear*****
Mon Jul 13 10:56:08 JST 2015
Masafumi Yokoyama 2015-07-13 10:56:08 +0900 (Mon, 13 Jul 2015) New Revision: 97097af787e92801086c6e2376c6db09782512d0 https://github.com/ranguba/rroonga/commit/97097af787e92801086c6e2376c6db09782512d0 Message: Fix order Modified files: ext/groonga/rb-grn.h ext/groonga/rb-groonga.c Modified: ext/groonga/rb-grn.h (+2 -2) =================================================================== --- ext/groonga/rb-grn.h 2015-07-13 10:53:23 +0900 (0f9d31c) +++ ext/groonga/rb-grn.h 2015-07-13 10:56:08 +0900 (dd6cbee) @@ -257,6 +257,7 @@ RB_GRN_VAR VALUE rb_eGrnInvalidArgument; RB_GRN_VAR VALUE rb_eGrnNoMemoryAvailable; RB_GRN_VAR VALUE rb_cGrnObject; RB_GRN_VAR VALUE rb_mGrnEncodingSupport; +RB_GRN_VAR VALUE rb_mGrnFlushable; RB_GRN_VAR VALUE rb_cGrnDatabase; RB_GRN_VAR VALUE rb_cGrnTable; RB_GRN_VAR VALUE rb_mGrnTableKeySupport; @@ -300,12 +301,12 @@ RB_GRN_VAR VALUE rb_cGrnRecordExpressionBuilder; RB_GRN_VAR VALUE rb_cGrnColumnExpressionBuilder; RB_GRN_VAR VALUE rb_cGrnPlugin; RB_GRN_VAR VALUE rb_cGrnNormalizer; -RB_GRN_VAR VALUE rb_mGrnFlushable; void rb_grn_init_utils (VALUE mGrn); void rb_grn_init_exception (VALUE mGrn); void rb_grn_init_encoding (VALUE mGrn); void rb_grn_init_encoding_support (VALUE mGrn); +void rb_grn_init_flushable (VALUE mGrn); void rb_grn_init_context (VALUE mGrn); void rb_grn_init_object (VALUE mGrn); void rb_grn_init_database (VALUE mGrn); @@ -351,7 +352,6 @@ void rb_grn_init_query_logger (VALUE mGrn); void rb_grn_init_snippet (VALUE mGrn); void rb_grn_init_plugin (VALUE mGrn); void rb_grn_init_normalizer (VALUE mGrn); -void rb_grn_init_flushable (VALUE mGrn); VALUE rb_grn_rc_to_exception (grn_rc rc); const char *rb_grn_rc_to_message (grn_rc rc); Modified: ext/groonga/rb-groonga.c (+1 -1) =================================================================== --- ext/groonga/rb-groonga.c 2015-07-13 10:53:23 +0900 (c40793a) +++ ext/groonga/rb-groonga.c 2015-07-13 10:56:08 +0900 (542fa1c) @@ -166,6 +166,7 @@ Init_groonga (void) rb_grn_init_utils(mGrn); rb_grn_init_encoding(mGrn); rb_grn_init_encoding_support(mGrn); + rb_grn_init_flushable(mGrn); rb_grn_init_context(mGrn); rb_grn_init_object(mGrn); rb_grn_init_database(mGrn); @@ -189,5 +190,4 @@ Init_groonga (void) rb_grn_init_snippet(mGrn); rb_grn_init_plugin(mGrn); rb_grn_init_normalizer(mGrn); - rb_grn_init_flushable(mGrn); } -------------- next part -------------- HTML����������������������������...Download