Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/questdb/ingress/line_sender.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1110,14 +1110,14 @@ class line_sender
/**
* Get the current protocol version used by the sender.
*/
questdb::ingress::protocol_version protocol_version() const noexcept
questdb::ingress::protocol_version protocol_version() const
{
ensure_impl();
return static_cast<enum protocol_version>(
static_cast<int>(::line_sender_get_protocol_version(_impl)));
}

line_sender_buffer new_buffer(size_t init_buf_size = 64 * 1024) noexcept
line_sender_buffer new_buffer(size_t init_buf_size = 64 * 1024)
{
ensure_impl();
return line_sender_buffer{
Expand Down