File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,7 @@ CPP_TEST_CASES += \
25
25
r_overload_array \
26
26
r_sexp \
27
27
r_overload_comma \
28
- r_use_isnull \
29
- li_boost_shared_ptr
28
+ r_use_isnull
30
29
31
30
# These tests are failing because enums currently cannot handle
32
31
# arithmetic expressions
Original file line number Diff line number Diff line change @@ -2092,7 +2092,7 @@ int R::functionWrapper(Node *n) {
2092
2092
Node * parent = Getattr (n, " parentNode" );
2093
2093
String * smartname = Getattr (parent, " feature:smartptr" );
2094
2094
if (smartname) {
2095
- String * classtypeobj = NewString ( Getattr (parent, " classtypeobj" ) ); // this is the correct name, e.g. ClassName(int)
2095
+ String * classtypeobj = Getattr (parent, " classtypeobj" ); // this is the correct name, e.g. ClassName(int)
2096
2096
String * classtype = NewString (Getattr (parent, " classtype" )); // this is the "wrong" name e.g. ClassName<int>
2097
2097
2098
2098
// we replace inside smartname ClassName<int> with ClassName(int)
@@ -2103,7 +2103,6 @@ int R::functionWrapper(Node *n) {
2103
2103
String * smartname_fixed_rclass = getRClassName (smartname_fixed, 1 , 1 );
2104
2104
Replaceall (tm, " $R_class" , smartname_fixed_rclass);
2105
2105
2106
- Delete (classtypeobj);
2107
2106
Delete (classtype);
2108
2107
Delete (smartname_fixed);
2109
2108
Delete (smartname_fixed_rclass);
You can’t perform that action at this time.
0 commit comments