| 101 | |
| 102 | template<class Context, class Arg> |
| 103 | static void dispatch_apply_terminal(Context &ctx, const Arg &arg) |
| 104 | { |
| 105 | typedef typename make_get_result_type<Context, Arg>::type T; |
| 106 | |
| 107 | proto::eval(arg, ctx); |
| 108 | ctx.stream << make_get_suffix<T>::value(); |
| 109 | } |
| 110 | |
| 111 | template<class Context, int I> |
| 112 | static void dispatch_apply_terminal(Context &ctx, placeholder<I>) |
nothing calls this directly
no outgoing calls
no test coverage detected