Skip to content

Commit

Permalink
rename abs
Browse files Browse the repository at this point in the history
  • Loading branch information
prodipta committed Sep 12, 2020
1 parent f15a353 commit 93f9106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/findlines.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ using namespace Rcpp;
double pi(){
return(3.141593);
}
double abs(double x){
double myabs(double x){
if(x<0)return (-x);
return x;
}
Expand Down

0 comments on commit 93f9106

Please sign in to comment.