| 824 | } |
| 825 | |
| 826 | static std::vector<std::shared_ptr<exec::FunctionSignature>> signatures() { |
| 827 | // integer -> integer |
| 828 | return {exec::FunctionSignatureBuilder() |
| 829 | .returnType("integer") |
| 830 | .argumentType("integer") |
| 831 | .build()}; |
| 832 | } |
| 833 | |
| 834 | private: |
| 835 | const int32_t addition_; |
nothing calls this directly
no test coverage detected