Fix bug where the default delimiter would be used for multiline data

This commit is contained in:
ado
2023-07-25 00:36:53 +02:00
parent 6196f7796b
commit 6edce88d79
2 changed files with 4 additions and 3 deletions

View File

@@ -152,7 +152,7 @@ public:
struct iterable {
struct iterator {
using value = std::conditional_t<get_object, T,
no_void_validator_tup_t<T, Ts...>>;
no_void_validator_tup_t<T, Ts...>>;
iterator() : parser_{nullptr} {
}
@@ -623,7 +623,8 @@ private:
}
}
next_line_converter_.resplit(next_line_buffer_, size);
next_line_converter_.resplit(next_line_buffer_, size,
delim_);
}
}