Skip to content

Commit df9aaaf

Browse files
authored
Use bool instead of grn_bool in rb-grn-less-operator.c (#226)
Replacing grn_bool with bool in Groonga. groonga/groonga#1638 https://github.com/groonga/groonga/blob/v15.0.2/include/groonga/operator.h#L39-L40
1 parent 51ba0a0 commit df9aaaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/groonga/rb-grn-less-operator.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ VALUE rb_cGrnLessOperator;
4646
static VALUE
4747
rb_grn_less_operator_exec (int argc, VALUE *argv, VALUE self)
4848
{
49-
grn_bool less;
49+
bool less;
5050
VALUE rb_x;
5151
VALUE rb_y;
5252
VALUE rb_options;

0 commit comments

Comments
 (0)