2
0
Эх сурвалжийг харах

Removed unnecessary retain/release.

woollybah 5 жил өмнө
parent
commit
2828f1f878

+ 0 - 3
reflection.mod/reflection.c

@@ -102,13 +102,10 @@ void bbRefPushObject( BBObject **p,BBObject *t ){
 }
 
 void bbRefInitObject( BBObject **p,BBObject *t ){
-	BBRETAIN( t );
 	*p=t;
 }
 
 void bbRefAssignObject( BBObject **p,BBObject *t ){
-	BBRETAIN( t );
-	BBRELEASE( *p );
 	*p=t;
 }