Skip to content

Commit

Permalink
fix cross-references, closes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Enchufa2 committed Oct 8, 2024
1 parent 3b62e84 commit 00e5a8b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: RcppXPtrUtils
Type: Package
Title: XPtr Add-Ons for 'Rcpp'
Version: 0.1.2
Version: 0.1.2.1
Authors@R: c(
person("Iñaki", "Ucar", email="[email protected]",
role=c("aut", "cph", "cre"), comment=c(ORCID="0000-0001-6403-5550")))
Expand All @@ -14,4 +14,4 @@ BugReports: https://github.com/Enchufa2/RcppXPtrUtils/issues
Depends: R (>= 3.0.0)
Imports: Rcpp
Suggests: inline, testthat
RoxygenNote: 7.2.0
RoxygenNote: 7.3.2
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# RcppXPtrUtils devel

- Fix cross-references in documentation (#3).

# RcppXPtrUtils 0.1.2

- Fix example.
Expand Down
4 changes: 2 additions & 2 deletions R/cppXPtr.R
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#' Define an \code{XPtr} with a C++ Implementation
#'
#' Dynamically define an \code{XPtr} with C++ source code. Compiles and links a shared
#' library with bindings to the C++ function using \code{\link{cppFunction}},
#' library with bindings to the C++ function using \code{\link[Rcpp]{cppFunction}},
#' then returns an \code{XPtr} that points to the function and can be used to be
#' plugged into another C++ backend.
#'
#' @inheritParams Rcpp::cppFunction
#' @return An object of class \code{XPtr} that points to the compiled function.
#'
#' @seealso \code{\link{cppFunction}}, \code{\link{checkXPtr}}
#' @seealso \code{\link[Rcpp]{cppFunction}}, \code{\link{checkXPtr}}
#' @examples
#' \donttest{
#' # takes time to compile
Expand Down
4 changes: 2 additions & 2 deletions man/cppXPtr.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 00e5a8b

Please sign in to comment.