@@ -250,7 +250,7 @@ rb_grn_table_key_support_add (int argc, VALUE *argv, VALUE self)
250
250
{
251
251
grn_id id ;
252
252
VALUE key , values ;
253
- int added = GRN_FALSE ;
253
+ int added = false ;
254
254
255
255
rb_scan_args (argc , argv , "11" , & key , & values );
256
256
id = rb_grn_table_key_support_add_raw (self , key , & added );
@@ -659,12 +659,12 @@ static VALUE
659
659
rb_grn_table_key_support_get_value (int argc , VALUE * argv , VALUE self )
660
660
{
661
661
VALUE rb_id_or_key , rb_options ;
662
- grn_bool use_key ;
662
+ bool use_key ;
663
663
664
664
rb_scan_args (argc , argv , "11" , & rb_id_or_key , & rb_options );
665
665
666
666
if (NIL_P (rb_options )) {
667
- use_key = GRN_TRUE ;
667
+ use_key = true ;
668
668
} else {
669
669
VALUE rb_option_id ;
670
670
@@ -729,12 +729,12 @@ static VALUE
729
729
rb_grn_table_key_support_set_value (int argc , VALUE * argv , VALUE self )
730
730
{
731
731
VALUE rb_id_or_key , rb_value , rb_options ;
732
- grn_bool use_key ;
732
+ bool use_key ;
733
733
734
734
rb_scan_args (argc , argv , "21" , & rb_id_or_key , & rb_value , & rb_options );
735
735
736
736
if (NIL_P (rb_options )) {
737
- use_key = GRN_TRUE ;
737
+ use_key = true ;
738
738
} else {
739
739
VALUE rb_option_id ;
740
740
@@ -775,7 +775,7 @@ rb_grn_table_key_support_get_default_tokenizer (VALUE self)
775
775
NULL );
776
776
rb_grn_context_check (context , self );
777
777
778
- return GRNOBJECT2RVAL (Qnil , context , tokenizer , GRN_FALSE );
778
+ return GRNOBJECT2RVAL (Qnil , context , tokenizer , false );
779
779
}
780
780
781
781
/*
@@ -905,7 +905,7 @@ rb_grn_table_key_support_get_normalizer (VALUE self)
905
905
normalizer = grn_obj_get_info (context , table , GRN_INFO_NORMALIZER , NULL );
906
906
rb_grn_context_check (context , self );
907
907
908
- return GRNOBJECT2RVAL (Qnil , context , normalizer , GRN_FALSE );
908
+ return GRNOBJECT2RVAL (Qnil , context , normalizer , false );
909
909
}
910
910
911
911
/*
@@ -1020,7 +1020,7 @@ rb_grn_table_key_support_tokenize (int argc, VALUE *argv, VALUE self)
1020
1020
grn_obj * table ;
1021
1021
char * string ;
1022
1022
int string_size ;
1023
- grn_bool add_p ;
1023
+ bool add_p ;
1024
1024
grn_obj tokens ;
1025
1025
1026
1026
rb_scan_args (argc , argv , "11" , & rb_string , & rb_options );
0 commit comments