| 64 | |
| 65 | logger_t* logger_ptr = nullptr; |
| 66 | std::string to_string(const sm_frag_location_t& v) |
| 67 | { |
| 68 | std::string s; |
| 69 | switch (v) { |
| 70 | case sm_frag_location_t::ABOVE: |
| 71 | s = "a"; |
| 72 | break; |
| 73 | case sm_frag_location_t::BELOW: |
| 74 | s = "b"; |
| 75 | break; |
| 76 | case sm_frag_location_t::UNDEFINED: |
| 77 | s = "u"; |
| 78 | break; |
| 79 | } |
| 80 | return s; |
| 81 | } |
| 82 | |
| 83 | std::string to_string(const cm_patch_location_t& v) |
| 84 | { |
no outgoing calls
no test coverage detected