| 8 | { |
| 9 | template<class A, class B> |
| 10 | auto operator()(A a, B b) const // N3386 Return Type Deduction |
| 11 | { return a + b; } |
| 12 | private: |
| 13 | // Note: We don't want to simply forward the call to operator() |
| 14 | // since forwarding is not entirely transparent, and could |
nothing calls this directly
no outgoing calls
no test coverage detected