std::allocator::address
From cppreference.com
                    
                                        
                    
                    
                                                            
                    | pointer address( reference x ) const; | (deprecated since C++17) | |
| const_pointer address( const_reference x ) const; | (deprecated since C++17) | |
Returns the actual address of x even in presence of overloaded operator&.
[edit] Parameters
| x | - | the object to acquire address of | 
[edit] Return value
The actual address of x.
[edit] Exceptions
| (none) | (until C++11) | 
| noexcept specification:   noexcept | (since C++11) | 


