| 81 | } |
| 82 | |
| 83 | string to_str(Ops op) { |
| 84 | switch (op) { |
| 85 | case Add: |
| 86 | return "Add "; |
| 87 | case Minus: |
| 88 | return "Minus "; |
| 89 | case Mul: |
| 90 | return "Mul "; |
| 91 | case Div: |
| 92 | return "Div "; |
| 93 | default: |
| 94 | return "Not "; |
| 95 | } |
| 96 | } |
| 97 | }; |
| 98 | |
| 99 | int main() { |
nothing calls this directly
no outgoing calls
no test coverage detected