Duplicate of code from StringUtils.h. Copied here for less dependencies.
| 79 | |
| 80 | /// Duplicate of code from StringUtils.h. Copied here for less dependencies. |
| 81 | static bool startsWith(const std::string & s, const char * prefix) |
| 82 | { |
| 83 | return s.size() >= strlen(prefix) && 0 == memcmp(s.data(), prefix, strlen(prefix)); |
| 84 | } |
| 85 | |
| 86 | SynonymsExtensions::SynonymsExtensions(const Poco::Util::AbstractConfiguration & config) |
| 87 | { |
no test coverage detected