Displaying 1 result from an estimated 1 matches for "ctordemo".
Did you mean:
cordero
2023 Jan 21
2
Object are not destroy while using error (Rf_error)
Dear all,
I try to understand why on my computer I do not clear all data with this
code:
#include <R.h>
static int count = 0;
class A {
public:
A(){ printf("c %d\n", count);
count++; }
~A(){count--;
printf("d %d\n", count); }
};
extern "C" {
void testAL(){
A a;
{
A b;
}
error("does not write [d 0]");
}
}