| 477 | |
| 478 | template <typename Functor> |
| 479 | FinallyGuard<typename std::decay<Functor>::type> finally(Functor&& f) { |
| 480 | return FinallyGuard<Functor>(std::forward<Functor>(f)); |
| 481 | } |
| 482 | |
| 483 | // Generates compile time sequences of indexes from MinIndex to MaxIndex |
| 484 |
no outgoing calls