Changeset 86417 in vbox
- Timestamp:
- Oct 2, 2020 11:54:57 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/tests/TestHashtables.cpp
r40300 r86417 290 290 printf(">>"); 291 291 292 --refcount_;292 nsrefcnt = --refcount_; 293 293 printf("IFoo@%p::Release(), refcount --> %d\n", 294 NS_STATIC_CAST(void*, this), refcount_);295 296 if ( ! refcount_)294 NS_STATIC_CAST(void*, this), nsrefcnt); 295 296 if ( !nsrefcnt ) 297 297 { 298 298 printf(" delete IFoo@%p\n", NS_STATIC_CAST(void*, this)); … … 303 303 printf(" delete IFoo@%p\n", NS_STATIC_CAST(void*, this)); 304 304 305 return refcount_;305 return nsrefcnt; 306 306 } 307 307
Note:
See TracChangeset
for help on using the changeset viewer.