Closed vsimko closed 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.
stop("message")
return NULL
stop()
(I'll create a pull request with the fix soon)
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 addingreturn NULL
after eachstop()
, the problem dissapears.(I'll create a pull request with the fix soon)