std::basic_ios<CharT,Traits>::~basic_ios
Min standard notice:
Destroys the basic_ios object. rdbuf is not destroyed.
# Declarations
virtual ~basic_ios();
# Notes
This destructor is virtual because the base class destructor, ios_base::~ios_base is virtual.
# Defect reports
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 53 | C++98 | it was unspecified whether rdbuf is destroyed | it is not destroyed |