Skip to content

Commit 4542dc0

Browse files
committed
Add cran-comments.md
Also includes notes for previous release.
1 parent 95d324d commit 4542dc0

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

cran-comments.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## R CMD check results v0.0.2
2+
3+
0 errors | 0 warnings | 2 notes
4+
5+
* This release improves documentation, and consistency of argument names.
6+
7+
The valgrind report ([from the Oxford memtests](https://www.stats.ox.ac.uk/pub/bdr/memtests/valgrind/golden/tests/testthat.Rout)) shows 15 "definitely lost" or "indirectly lost" blocks, all originating from paths that throw exceptions in Rcpp code.
8+
9+
These are known false positives caused by the interaction between C++ exceptions and R's longjmp-based error handling. The reported allocations (often the strings holding the exception's messages) are likely cleaned up by R's garbage collector, but Valgrind cannot see this cleanup due to the non-local jump skipping normal C++ destructors.
10+
11+
This pattern is considered harmless. No memory leaks were detected in the success paths or in non-exception-throwing tests.
12+
13+
## R CMD check results v0.0.1
14+
15+
0 errors | 0 warnings | 2 notes
16+
17+
* This is the first release.

0 commit comments

Comments
 (0)