| 315 | #ifndef BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT |
| 316 | template<class Expr> |
| 317 | void assign_expr ( Expr const& expr, Expr const* tag ) |
| 318 | { |
| 319 | if (is_initialized()) |
| 320 | assign_expr_to_initialized(expr,tag); |
| 321 | else construct(expr,tag); |
| 322 | } |
| 323 | #endif |
| 324 | |
| 325 | public : |
nothing calls this directly
no test coverage detected