| 557 | |
| 558 | template<class Expr> |
| 559 | void assign_expr_to_initialized ( Expr&& factory, in_place_factory_base const* tag ) |
| 560 | { |
| 561 | destroy(); |
| 562 | construct(factory,tag); |
| 563 | } |
| 564 | |
| 565 | // Constructs in-place using the given typed factory |
| 566 | template<class Expr> |
no test coverage detected