| 2426 | return std::isspace(c, std::locale()); |
| 2427 | } |
| 2428 | void rtrim(std::string& s) |
| 2429 | { |
| 2430 | s.erase(std::find_if_not(s.rbegin(), s.rend(), isWhitespace).base(), s.end()); |
| 2431 | } |
| 2432 | } // namespace |
| 2433 | |
| 2434 | float RichText::stripTrailingWhitespace(const Vector<ax::Node*>& row) |
no test coverage detected