|
|
|
|
|
by widdershins
208 days ago
|
|
> With a reference counting GC, you're essentially emulating "perfect" use of C++ unique_ptr. Did you mean shared_ptr? With unique_ptr there's no reference-counting overhead at all. When the reference count is atomic (as it must be in the general case), it can have a significant and measurable impact on performance. |
|