| 652 | } |
| 653 | |
| 654 | bool |
| 655 | FunctionInvocation::UnaryOpWorksForFloat(eUnaryOps op) |
| 656 | { |
| 657 | switch (op) { |
| 658 | case ePlus: |
| 659 | case eMinus: |
| 660 | case eNot: // fall-through |
| 661 | return true; |
| 662 | default: |
| 663 | return false; |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | /////////////////////////////////////////////////////////////////////////////// |
| 668 |
nothing calls this directly
no outgoing calls
no test coverage detected