Not a good abs function, but easy to test.
| 131 | |
| 132 | // Not a good abs function, but easy to test. |
| 133 | std::string abs(const Vector2 &) { return "abs(Vector2)"; } |
| 134 | |
| 135 | // clang 7.0.0 and Apple LLVM 10.0.1 introduce `-Wself-assign-overloaded` to |
| 136 | // `-Wall`, which is used here for overloading (e.g. `py::self += py::self `). |
no outgoing calls
no test coverage detected