| 42 | }; |
| 43 | |
| 44 | char const* TypeToString(int type) |
| 45 | { |
| 46 | // clang-format off |
| 47 | switch (type) { |
| 48 | case e_CVS: return "CVS"; |
| 49 | case e_SVN: return "SVN"; |
| 50 | case e_BZR: return "BZR"; |
| 51 | case e_GIT: return "GIT"; |
| 52 | case e_HG: return "HG"; |
| 53 | case e_P4: return "P4"; |
| 54 | default: return "Unknown"; |
| 55 | } |
| 56 | // clang-format on |
| 57 | } |
| 58 | |
| 59 | char const* TypeToCommandKey(int type) |
| 60 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…