Fixes for variable shadowing (28/28)
This commit is contained in:
parent
24a993cf00
commit
8f3178191c
1 changed files with 4 additions and 4 deletions
|
|
@ -203,11 +203,11 @@ public:
|
|||
checked_delete(this);
|
||||
}
|
||||
|
||||
friend inline void intrusive_ptr_add_ref(value_t::storage_t * storage) {
|
||||
storage->acquire();
|
||||
friend inline void intrusive_ptr_add_ref(value_t::storage_t * storage_ptr) {
|
||||
storage_ptr->acquire();
|
||||
}
|
||||
friend inline void intrusive_ptr_release(value_t::storage_t * storage) {
|
||||
storage->release();
|
||||
friend inline void intrusive_ptr_release(value_t::storage_t * storage_ptr) {
|
||||
storage_ptr->release();
|
||||
}
|
||||
|
||||
void destroy() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue