NOLINTNEXTLINE(misc-use-anonymous-namespace,misc-use-internal-linkage)
| 14 | |
| 15 | // NOLINTNEXTLINE(misc-use-anonymous-namespace,misc-use-internal-linkage) |
| 16 | static const char* ToStr(const Color& c) |
| 17 | { |
| 18 | switch(c) |
| 19 | { |
| 20 | case Color::Red: |
| 21 | return "Red"; |
| 22 | case Color::Blue: |
| 23 | return "Blue"; |
| 24 | case Color::Green: |
| 25 | return "Green"; |
| 26 | case Color::Undefined: |
| 27 | return "Undefined"; |
| 28 | } |
| 29 | return nullptr; |
| 30 | } |
| 31 | |
| 32 | class ActionEnum : public SyncActionNode |
| 33 | { |
no outgoing calls
no test coverage detected