| 347 | |
| 348 | template <class T> |
| 349 | static Euler<T> * |
| 350 | eulerConstructor1e(const Euler<T>& e, int iorder, int layout) |
| 351 | { |
| 352 | typename Euler<T>::Order o = typename Euler<T>::Order (iorder); |
| 353 | typename Euler<T>::InputLayout l = typename Euler<T>::InputLayout (layout); |
| 354 | return new Euler<T>(e, o, l); |
| 355 | } |
| 356 | |
| 357 | |
| 358 | template <class T> |
nothing calls this directly
no outgoing calls
no test coverage detected