| 54 | |
| 55 | logger_t* logger_ptr = nullptr; |
| 56 | std::string to_string(const sm_frag_location_t& v) |
| 57 | { |
| 58 | std::string s; |
| 59 | switch (v) { |
| 60 | case sm_frag_location_t::ABOVE: |
| 61 | s = "a"; |
| 62 | break; |
| 63 | case sm_frag_location_t::BELOW: |
| 64 | s = "b"; |
| 65 | break; |
| 66 | case sm_frag_location_t::UNDEFINED: |
| 67 | s = "u"; |
| 68 | break; |
| 69 | } |
| 70 | return s; |
| 71 | } |
| 72 | |
| 73 | std::string to_string(const cm_patch_location_t& v) |
| 74 | { |
no outgoing calls
no test coverage detected