Skip to content

Commit 27c4ce1

Browse files
authored
Use bool instead of grn_bool in rb-grn-table-key-support.c (#227)
grn_bool is deprecated and replaced by bool in Groonga. groonga/groonga#1638
1 parent df9aaaf commit 27c4ce1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ext/groonga/rb-grn-table-key-support.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ rb_grn_table_key_support_add (int argc, VALUE *argv, VALUE self)
250250
{
251251
grn_id id;
252252
VALUE key, values;
253-
int added = GRN_FALSE;
253+
int added = false;
254254

255255
rb_scan_args(argc, argv, "11", &key, &values);
256256
id = rb_grn_table_key_support_add_raw(self, key, &added);
@@ -659,12 +659,12 @@ static VALUE
659659
rb_grn_table_key_support_get_value (int argc, VALUE *argv, VALUE self)
660660
{
661661
VALUE rb_id_or_key, rb_options;
662-
grn_bool use_key;
662+
bool use_key;
663663

664664
rb_scan_args(argc, argv, "11", &rb_id_or_key, &rb_options);
665665

666666
if (NIL_P(rb_options)) {
667-
use_key = GRN_TRUE;
667+
use_key = true;
668668
} else {
669669
VALUE rb_option_id;
670670

@@ -729,12 +729,12 @@ static VALUE
729729
rb_grn_table_key_support_set_value (int argc, VALUE *argv, VALUE self)
730730
{
731731
VALUE rb_id_or_key, rb_value, rb_options;
732-
grn_bool use_key;
732+
bool use_key;
733733

734734
rb_scan_args(argc, argv, "21", &rb_id_or_key, &rb_value, &rb_options);
735735

736736
if (NIL_P(rb_options)) {
737-
use_key = GRN_TRUE;
737+
use_key = true;
738738
} else {
739739
VALUE rb_option_id;
740740

@@ -775,7 +775,7 @@ rb_grn_table_key_support_get_default_tokenizer (VALUE self)
775775
NULL);
776776
rb_grn_context_check(context, self);
777777

778-
return GRNOBJECT2RVAL(Qnil, context, tokenizer, GRN_FALSE);
778+
return GRNOBJECT2RVAL(Qnil, context, tokenizer, false);
779779
}
780780

781781
/*
@@ -905,7 +905,7 @@ rb_grn_table_key_support_get_normalizer (VALUE self)
905905
normalizer = grn_obj_get_info(context, table, GRN_INFO_NORMALIZER, NULL);
906906
rb_grn_context_check(context, self);
907907

908-
return GRNOBJECT2RVAL(Qnil, context, normalizer, GRN_FALSE);
908+
return GRNOBJECT2RVAL(Qnil, context, normalizer, false);
909909
}
910910

911911
/*
@@ -1020,7 +1020,7 @@ rb_grn_table_key_support_tokenize (int argc, VALUE *argv, VALUE self)
10201020
grn_obj *table;
10211021
char *string;
10221022
int string_size;
1023-
grn_bool add_p;
1023+
bool add_p;
10241024
grn_obj tokens;
10251025

10261026
rb_scan_args(argc, argv, "11", &rb_string, &rb_options);

0 commit comments

Comments
 (0)