Skip to content

Commit

Permalink
Fix pdf textbox overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
billdenney committed Feb 12, 2022
1 parent 1c8a194 commit 6949c34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vignettes/rmd/Rcpp-attributes.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,8 @@ In this case, a call to `my_package_init()` will be added to the end of the auto
```{Rcpp, eval = FALSE}
void my_package_init(DllInfo *dll);
RcppExport void R_init_pkgname(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_registerRoutines(dll, NULL, CallEntries,
NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
my_package_init(dll);
}
Expand Down

0 comments on commit 6949c34

Please sign in to comment.