| 9 | #include "libstatic.h" |
| 10 | |
| 11 | static void rtrim(std::string& str, char byte) |
| 12 | { |
| 13 | size_t const size = str.size(); |
| 14 | if (size && str[size - 1] == byte) { |
| 15 | str.resize(size - 1); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | void compare(char const* refName, char const* testName) |
| 20 | { |