Skip to content

Commit 9a80368

Browse files
authored
Fix exp_short_init_compact_seq() signature (#2103)
1 parent a5c1fe3 commit 9a80368

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# vctrs (development version)
22

3+
* Fixed the C level signature for the `exp_short_init_compact_seq()` callable.
4+
35
* Experimental "partial" type support has been removed. This idea never panned out and was not widely used. The following functions have been removed (#2101):
46

57
* `is_partial()`

src/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ extern SEXP exp_vec_slice_impl(SEXP, SEXP);
187187
extern SEXP exp_vec_names(SEXP);
188188
extern SEXP exp_vec_set_names(SEXP, SEXP);
189189
extern SEXP exp_short_compact_seq(R_len_t, R_len_t, bool);
190-
extern SEXP exp_short_init_compact_seq(int*, R_len_t, R_len_t, bool);
190+
extern void exp_short_init_compact_seq(int*, R_len_t, R_len_t, bool);
191191

192192
// Defined below
193193
SEXP vctrs_init_library(SEXP);

0 commit comments

Comments
 (0)