Skip to content

Commit df5915c

Browse files
committed
correct subsection header (thanks, @Enchufa2)
1 parent fdfa0fc commit df5915c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

vignettes/pdf/Rcpp-FAQ.pdf

-153 KB
Binary file not shown.

vignettes/rmd/Rcpp-FAQ.Rmd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1766,12 +1766,11 @@ that this symbol is registered when your package is loaded by R, and as a
17661766
side-effect certain other \pkg{Rcpp} function identifiers will also be
17671767
resolved properly.
17681768

1769-
## On macOS, 'no function function for call to `R_lsInternal`'
1769+
## On macOS, 'no matching function for call to `R_lsInternal`'
17701770

17711771
In issue [#1148](https://github.com/RcppCore/Rcpp/issues/1148) an error due
17721772
to overeager includes was reported. Including `Rinternals.h` along with the
17731773
(macOS-only) `mach/boolean.h` lead to linker error as `mach/boolean`
17741774
redefines `TRUE` leading to bad interactions with the `Rboolean` enum type. A
17751775
very simple solution is to be more careful and conservative with `#include`
17761776
files and a) have `#include <mach/boolean.h>` appear first and b) skip
1777-
`#include <Rinternals.h>` as Rcpp brings it in anyway.

0 commit comments

Comments
 (0)