We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ea0d3c commit a7b3fbdCopy full SHA for a7b3fbd
include/boost/redis/detail/connection_base.hpp
@@ -405,7 +405,7 @@ class connection_base {
405
, dbuf_{read_buffer_, max_read_size}
406
{
407
set_receive_response(ignore);
408
- writer_timer_.expires_at(std::chrono::steady_clock::time_point::max());
+ writer_timer_.expires_at((std::chrono::steady_clock::time_point::max)());
409
}
410
411
/// Returns the ssl context.
@@ -632,7 +632,7 @@ class connection_base {
632
, ec_{{}}
633
, read_size_{0}
634
635
- timer_.expires_at(std::chrono::steady_clock::time_point::max());
+ timer_.expires_at((std::chrono::steady_clock::time_point::max)());
636
637
adapter_ = [this, adapter](node_type const& nd, system::error_code& ec)
638
0 commit comments