| 950 | : q1 (q1In), q2 (q2In), result (resultIn) {} |
| 951 | |
| 952 | void execute (size_t start, size_t end) |
| 953 | { |
| 954 | for (size_t i = start; i < end; ++i) |
| 955 | { |
| 956 | result[i] = q1[i] * q2[i]; |
| 957 | } |
| 958 | } |
| 959 | }; |
| 960 | |
| 961 | template <class T> |
nothing calls this directly
no outgoing calls
no test coverage detected