Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan committed Feb 27, 2024
1 parent ddafce1 commit ec020d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azmq/detail/receive_op.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class receive_buffer_op_base : public reactor_op {
}

private:
typename std::conditional<std::is_same_v<MutableBufferSequence, azmq::message>, MutableBufferSequence const&, MutableBufferSequence>::type buffers_;
typename std::conditional<std::is_same<MutableBufferSequence, azmq::message>::value, MutableBufferSequence const&, MutableBufferSequence>::type buffers_;
flags_type flags_;
};

Expand Down

0 comments on commit ec020d3

Please sign in to comment.