From Jason Turner

[polymorphic.dtor]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp36miikep/{from.md → to.md} +12 -0
tmp/tmp36miikep/{from.md → to.md} RENAMED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Destructor <a id="polymorphic.dtor">[[polymorphic.dtor]]</a>
2
+
3
+ ``` cpp
4
+ constexpr ~polymorphic();
5
+ ```
6
+
7
+ *Mandates:* `T` is a complete type.
8
+
9
+ *Effects:* If `*this` is not valueless, destroys the owned object using
10
+ `allocator_traits<Allocator>::destroy` and then the storage is
11
+ deallocated.
12
+