How to explicitly call a namespace-qualified destructor?
In the standard, at: ยง3.4.5/3 If the unqualified-id is ~type-name, the type-name is looked up in the context of the entire postfix-expression. therefore it would seem that ~string should be looked up in the context of the std:: namespace. In fact, considering that a corresponding home-made version works as follows on both GCC and Clang: … Read more