| 391 | } |
| 392 | |
| 393 | void |
| 394 | operator()(const boost::blank & array) const |
| 395 | { |
| 396 | const shared_ptr<const XdmfArrayType> copyType = |
| 397 | mArrayToCopy->getArrayType(); |
| 398 | if(copyType == XdmfArrayType::Uninitialized()) { |
| 399 | return; |
| 400 | } |
| 401 | mArray->initialize(copyType); |
| 402 | boost::apply_visitor(*this, |
| 403 | mArray->mArray); |
| 404 | } |
| 405 | |
| 406 | template<typename T> |
| 407 | void |
nothing calls this directly
no test coverage detected