tmp/tmprgbu4u4f/{from.md → to.md}
RENAMED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
### Allocator argument tag <a id="allocator.tag">[[allocator.tag]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
struct allocator_arg_t { };
|
| 6 |
-
constexpr allocator_arg_t allocator_arg
|
| 7 |
}
|
| 8 |
```
|
| 9 |
|
| 10 |
The `allocator_arg_t` struct is an empty structure type used as a unique
|
| 11 |
type to disambiguate constructor and function overloading. Specifically,
|
|
|
|
| 1 |
### Allocator argument tag <a id="allocator.tag">[[allocator.tag]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std {
|
| 5 |
struct allocator_arg_t { };
|
| 6 |
+
constexpr allocator_arg_t allocator_arg{};
|
| 7 |
}
|
| 8 |
```
|
| 9 |
|
| 10 |
The `allocator_arg_t` struct is an empty structure type used as a unique
|
| 11 |
type to disambiguate constructor and function overloading. Specifically,
|