Skip to content

Commit ea31dea

Browse files
author
ripley
committed
Rbookean -> bool
git-svn-id: https://svn.r-project.org/R/trunk@87940 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 4957e97 commit ea31dea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/envir.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ attribute_hidden void unbindVar(SEXP symbol, SEXP rho)
875875
Callers set *canCache = TRUE or NULL
876876
*/
877877

878-
static SEXP findVarLocInFrame(SEXP rho, SEXP symbol, Rboolean *canCache)
878+
static SEXP findVarLocInFrame(SEXP rho, SEXP symbol, bool *canCache)
879879
{
880880
int hashcode;
881881
SEXP frame, c;
@@ -1183,7 +1183,7 @@ void readS3VarsFromFrame(SEXP rho,
11831183
static SEXP findGlobalVarLoc(SEXP symbol)
11841184
{
11851185
SEXP vl, rho;
1186-
Rboolean canCache = TRUE;
1186+
bool canCache = TRUE;
11871187
vl = R_GetGlobalCacheLoc(symbol);
11881188
if (vl != R_UnboundValue)
11891189
return vl;

0 commit comments

Comments
 (0)