cran-comments.md

Submission

This yet another C++11 fix, fixing clang warning: Result: WARN Found the following significant warnings: znorm.cpp:44:59: warning: 'bind2nd, double>' is deprecated [-Wdeprecated-declarations]

The old code: std::transform(ts.begin(), ts.end(), diff.begin(), std::bind2nd(std::minus(), mean));

The new code: for(unsigned i=0; i<ts.size(); i++) diff[i] = ts[i]-mean;

Changes

All over source code in order to fix any thrown warnings.

Test environments

R CMD check results

There were no ERRORs or WARNINGs

Downstream dependencies

stats::as.dist



jMotif/jmotif-R documentation built on Sept. 27, 2022, 4:31 p.m.