| 64 | } |
| 65 | |
| 66 | inline std::string toName(BaseType b) |
| 67 | { |
| 68 | switch (b) |
| 69 | { |
| 70 | case BaseType::Signed: |
| 71 | return "signed"; |
| 72 | case BaseType::Unsigned: |
| 73 | return "unsigned"; |
| 74 | case BaseType::Floating: |
| 75 | return "floating"; |
| 76 | default: |
| 77 | return ""; |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | enum class Type |
| 82 | { |
no outgoing calls
no test coverage detected