| 54 | } |
| 55 | |
| 56 | static std::string getOSLineSeparator() { |
| 57 | #ifdef _WIN32 |
| 58 | return "\r\n"; |
| 59 | #else |
| 60 | return "\n"; |
| 61 | #endif |
| 62 | } |
| 63 | |
| 64 | std::string handleLineSeparator(const std::string& original, const std::string& formatted, const Config& config) { |
| 65 | const auto line_separator_config = config.get<std::string>("line_separator"); |
no outgoing calls
no test coverage detected