Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
627c49ba
Commit
627c49ba
authored
7 years ago
by
stepan
Browse files
Options
Downloads
Patches
Plain Diff
Fix some C compiler warnings
parent
66449a77
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
com.oracle.truffle.r.native/fficall/src/truffle_common/Rinternals_truffle_common.h
+12
-9
12 additions, 9 deletions
...ve/fficall/src/truffle_common/Rinternals_truffle_common.h
with
12 additions
and
9 deletions
com.oracle.truffle.r.native/fficall/src/truffle_common/Rinternals_truffle_common.h
+
12
−
9
View file @
627c49ba
...
...
@@ -449,7 +449,8 @@ void Rf_copyVector(SEXP x, SEXP y) {
int
Rf_countContexts
(
int
x
,
int
y
)
{
TRACE0
();
return
(
int
)
unimplemented
(
"Rf_countContexts"
);
unimplemented
(
"Rf_countContexts"
);
return
0
;
}
Rboolean
Rf_inherits
(
SEXP
x
,
const
char
*
klass
)
{
...
...
@@ -775,14 +776,14 @@ SEXP CLOENV(SEXP x) {
int
RDEBUG
(
SEXP
x
)
{
TRACE0
();
SEXP
result
=
((
call_RDEBUG
)
callbacks
[
RDEBUG_x
])(
x
);
int
result
=
((
call_RDEBUG
)
callbacks
[
RDEBUG_x
])(
x
);
checkExitCall
();
return
result
;
}
int
RSTEP
(
SEXP
x
)
{
TRACE0
();
SEXP
result
=
((
call_RSTEP
)
callbacks
[
RSTEP_x
])(
x
);
int
result
=
((
call_RSTEP
)
callbacks
[
RSTEP_x
])(
x
);
checkExitCall
();
return
result
;
}
...
...
@@ -925,7 +926,7 @@ SEXP PRVALUE(SEXP x) {
int
PRSEEN
(
SEXP
x
)
{
TRACE0
();
SEXP
result
=
((
call_PRSEEN
)
callbacks
[
PRSEEN_x
])(
x
);
int
result
=
((
call_PRSEEN
)
callbacks
[
PRSEEN_x
])(
x
);
checkExitCall
();
return
result
;
}
...
...
@@ -1104,14 +1105,14 @@ SEXP Rf_asCharacterFactor(SEXP x){
int
Rf_asLogical
(
SEXP
x
)
{
TRACE0
();
SEXP
result
=
((
call_Rf_asLogical
)
callbacks
[
Rf_asLogical_x
])(
x
);
int
result
=
((
call_Rf_asLogical
)
callbacks
[
Rf_asLogical_x
])(
x
);
checkExitCall
();
return
result
;
}
int
Rf_asInteger
(
SEXP
x
)
{
TRACE0
();
SEXP
result
=
((
call_Rf_asInteger
)
callbacks
[
Rf_asInteger_x
])(
x
);
int
result
=
((
call_Rf_asInteger
)
callbacks
[
Rf_asInteger_x
])(
x
);
checkExitCall
();
return
result
;
}
...
...
@@ -1214,7 +1215,8 @@ void R_qsort_int_I(int *iv, int *II, int i, int j) {
R_len_t
R_BadLongVector
(
SEXP
x
,
const
char
*
y
,
int
z
)
{
TRACE0
();
return
(
R_len_t
)
unimplemented
(
"R_BadLongVector"
);
unimplemented
(
"R_BadLongVector"
);
return
(
R_len_t
)
0
;
}
int
IS_S4_OBJECT
(
SEXP
x
)
{
...
...
@@ -1494,7 +1496,8 @@ SEXP R_do_slot_assign(SEXP obj, SEXP name, SEXP value) {
int
R_has_slot
(
SEXP
obj
,
SEXP
name
)
{
TRACE0
();
return
(
int
)
unimplemented
(
"R_has_slot"
);
unimplemented
(
"R_has_slot"
);
return
0
;
}
SEXP
R_do_MAKE_CLASS
(
const
char
*
what
)
{
...
...
@@ -1568,7 +1571,7 @@ void Rf_copyMatrix(SEXP s, SEXP t, Rboolean byrow) {
int
FASTR_getConnectionChar
(
SEXP
conn
)
{
TRACE0
();
SEXP
result
=
((
call_FASTR_getConnectionChar
)
callbacks
[
FASTR_getConnectionChar_x
])(
conn
);
int
result
=
((
call_FASTR_getConnectionChar
)
callbacks
[
FASTR_getConnectionChar_x
])(
conn
);
checkExitCall
();
return
result
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment