| 377 | T value_; |
| 378 | |
| 379 | explicit box(T value, Allocator allocator_) |
| 380 | : Allocator(std::move(allocator_)), value_(std::move(value)) { |
| 381 | } |
| 382 | |
| 383 | box(box&&) = default; |
| 384 | box(box const&) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected