Skip to content

Commit a80908f

Browse files
authored
Merge pull request #1069 from xhochy/clang
Explicitly call abs as a function in DataFrame.h
2 parents cefedb7 + 687a4a6 commit a80908f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2020-04-15 Uwe Korn <[email protected]>
2+
3+
* inst/include/Rcpp/DataFrame.h: Explicit call to scalar std::abs
4+
15
2020-04-11 Dirk Eddelbuettel <[email protected]>
26

37
* DESCRIPTION (Version, Date): Roll minor version

inst/include/Rcpp/DataFrame.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ namespace Rcpp{
7979
if (Rf_isNull(rn))
8080
return 0;
8181
if (TYPEOF(rn) == INTSXP && LENGTH(rn) == 2 && INTEGER(rn)[0] == NA_INTEGER)
82-
return abs(INTEGER(rn)[1]);
82+
return std::abs(INTEGER(rn)[1]);
8383
return LENGTH(rn);
8484
}
8585

0 commit comments

Comments
 (0)