Skip to content

Commit 7eb2add

Browse files
stenlarssonkou
authored andcommitted
Prefer nullptr instead of NULL in C++ code
1 parent d11eb30 commit 7eb2add

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c_glib/arrow-glib/compute.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7708,7 +7708,7 @@ garrow_list_slice_options_class_init(GArrowListSliceOptionsClass *klass)
77087708
GArrowListSliceOptions *
77097709
garrow_list_slice_options_new(void)
77107710
{
7711-
auto options = g_object_new(GARROW_TYPE_LIST_SLICE_OPTIONS, NULL);
7711+
auto options = g_object_new(GARROW_TYPE_LIST_SLICE_OPTIONS, nullptr);
77127712
return GARROW_LIST_SLICE_OPTIONS(options);
77137713
}
77147714

0 commit comments

Comments
 (0)