| 437 | |
| 438 | template <typename T> |
| 439 | struct is_box : std::false_type {}; |
| 440 | template <bool IsCopyable, typename T, typename Allocator> |
| 441 | struct is_box<box<IsCopyable, T, Allocator>> : std::true_type {}; |
| 442 |
nothing calls this directly
no outgoing calls
no test coverage detected