tmp/tmpz2mtqxmr/{from.md → to.md}
RENAMED
|
@@ -37,11 +37,11 @@ template <class T>
|
|
| 37 |
|
| 38 |
*Effects:* calls `a.destroy(p)` if that call is well-formed; otherwise,
|
| 39 |
invokes `p->~T()`.
|
| 40 |
|
| 41 |
``` cpp
|
| 42 |
-
static size_type max_size(Alloc& a);
|
| 43 |
```
|
| 44 |
|
| 45 |
*Returns:* `a.max_size()` if that expression is well-formed; otherwise,
|
| 46 |
`numeric_limits<size_type>::max()`.
|
| 47 |
|
|
|
|
| 37 |
|
| 38 |
*Effects:* calls `a.destroy(p)` if that call is well-formed; otherwise,
|
| 39 |
invokes `p->~T()`.
|
| 40 |
|
| 41 |
``` cpp
|
| 42 |
+
static size_type max_size(const Alloc& a) noexcept;
|
| 43 |
```
|
| 44 |
|
| 45 |
*Returns:* `a.max_size()` if that expression is well-formed; otherwise,
|
| 46 |
`numeric_limits<size_type>::max()`.
|
| 47 |
|