| 5264 | namespace Catch { namespace clara { namespace TextFlow { |
| 5265 | |
| 5266 | inline auto isWhitespace( char c ) -> bool { |
| 5267 | static std::string chars = " \t\n\r"; |
| 5268 | return chars.find( c ) != std::string::npos; |
| 5269 | } |
| 5270 | inline auto isBreakableBefore( char c ) -> bool { |
| 5271 | static std::string chars = "[({<|"; |
| 5272 | return chars.find( c ) != std::string::npos; |
no test coverage detected