| 78 | struct VectorizeTestClass { |
| 79 | explicit VectorizeTestClass(int v) : value{v} {}; |
| 80 | float method(int x, float y) const { return y + (float) (x + value); } |
| 81 | // Exercises vectorize(Return (Class::*)(Args...) &) |
| 82 | // NOLINTNEXTLINE(readability-make-member-function-const) |
| 83 | float method_lref(int x, float y) & { return y + (float) (x + value); } |
no outgoing calls
no test coverage detected