We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5676be9 commit f34df72Copy full SHA for f34df72
include/glaze/yaml/read.hpp
@@ -1241,9 +1241,8 @@ namespace glz
1241
// Folded: single newline becomes space, paragraph breaks keep one newline.
1242
// Folding does not apply adjacent to "more indented" or tab-leading lines.
1243
const size_t break_count = trailing_newlines.size();
1244
- const bool adjacent_special =
1245
- previous_line_starts_with_tab || current_line_starts_with_tab ||
1246
- previous_line_more_indented || current_line_more_indented;
+ const bool adjacent_special = previous_line_starts_with_tab || current_line_starts_with_tab ||
+ previous_line_more_indented || current_line_more_indented;
1247
if (break_count == 1) {
1248
if (adjacent_special) {
1249
value.push_back('\n');
0 commit comments