| 299 | } |
| 300 | |
| 301 | std::string removeSingleQuotationMarks(std::string& str) |
| 302 | { |
| 303 | std::vector<std::string> strList{splitToStringVec(str, '\'')}; |
| 304 | // Remove all the escaped single quotation marks |
| 305 | std::string retVal; |
| 306 | // Do not really care about unterminated sequences |
| 307 | for (size_t i = 0; i < strList.size(); i++) |
| 308 | { |
| 309 | retVal += strList[i]; |
| 310 | } |
| 311 | return retVal; |
| 312 | } |
| 313 | |
| 314 | void getLayerPrecisions(Arguments& arguments, char const* argument, LayerPrecisions& layerPrecisions) |
| 315 | { |
no test coverage detected