| 83 | } |
| 84 | |
| 85 | std::string SelectName(const char * name, Thresholding::ECompareOperation Op) |
| 86 | { |
| 87 | std::string str = name; |
| 88 | |
| 89 | switch (Op) |
| 90 | { |
| 91 | case Thresholding::LT: |
| 92 | str += "_LT"; |
| 93 | break; |
| 94 | case Thresholding::LQ: |
| 95 | str += "_LQ"; |
| 96 | break; |
| 97 | case Thresholding::EQ: |
| 98 | str += "_EQ"; |
| 99 | break; |
| 100 | case Thresholding::GQ: |
| 101 | str += "_GQ"; |
| 102 | break; |
| 103 | case Thresholding::GT: |
| 104 | str += "_GT"; |
| 105 | break; |
| 106 | } |
| 107 | |
| 108 | return str; |
| 109 | } |
| 110 | |
| 111 | } |
nothing calls this directly
no outgoing calls
no test coverage detected