tgouhier / biwavelet

R package to conduct univariate and bivariate wavelet analyses
43 stars 17 forks source link

R crashes when using stop() command in rcpp #64

Closed vsimko closed 7 years ago

vsimko commented 7 years ago

I noticed that my tests suddenly crashed when they shouldn't. After some testing, I found out that the stop("message") commands in all rcpp_* files are the cause. After adding return NULL after each stop(), the problem dissapears.

(I'll create a pull request with the fix soon)