We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4957e97 commit ea31deaCopy full SHA for ea31dea
src/main/envir.c
@@ -875,7 +875,7 @@ attribute_hidden void unbindVar(SEXP symbol, SEXP rho)
875
Callers set *canCache = TRUE or NULL
876
*/
877
878
-static SEXP findVarLocInFrame(SEXP rho, SEXP symbol, Rboolean *canCache)
+static SEXP findVarLocInFrame(SEXP rho, SEXP symbol, bool *canCache)
879
{
880
int hashcode;
881
SEXP frame, c;
@@ -1183,7 +1183,7 @@ void readS3VarsFromFrame(SEXP rho,
1183
static SEXP findGlobalVarLoc(SEXP symbol)
1184
1185
SEXP vl, rho;
1186
- Rboolean canCache = TRUE;
+ bool canCache = TRUE;
1187
vl = R_GetGlobalCacheLoc(symbol);
1188
if (vl != R_UnboundValue)
1189
return vl;
0 commit comments