| 174 | } |
| 175 | |
| 176 | inline static std::string getStringCharLiteral(const std::string &str, char q) |
| 177 | { |
| 178 | const std::size_t quotePos = str.find(q); |
| 179 | return str.substr(quotePos + 1U, str.size() - quotePos - 2U); |
| 180 | } |
| 181 | |
| 182 | inline static std::string getStringLiteral(const std::string &str) |
| 183 | { |
no test coverage detected