Because STL vs. C library leads to ugly casting, fix it once.
| 52 | |
| 53 | // Because STL vs. C library leads to ugly casting, fix it once. |
| 54 | inline int |
| 55 | length(std::string const &str) |
| 56 | { |
| 57 | return static_cast<int>(str.size()); |
| 58 | } |
| 59 | |
| 60 | constexpr unsigned DEFAULT_MAX_FILE_COUNT = 100; |
| 61 | constexpr int MAX_QUERY_LENGTH = 4096; |
no test coverage detected