Commit 36d265ee authored by Simon Giesecke's avatar Simon Giesecke

Problem: redundant parentheses in return statements

Solution: remove them
parent 0c363fbb
...@@ -42,7 +42,7 @@ macro(zmq_check_o_cloexec) ...@@ -42,7 +42,7 @@ macro(zmq_check_o_cloexec)
int main(int argc, char *argv []) int main(int argc, char *argv [])
{ {
int s = open (\"/dev/null\", O_CLOEXEC | O_RDONLY); int s = open (\"/dev/null\", O_CLOEXEC | O_RDONLY);
return (s == -1); return s == -1;
} }
" "
ZMQ_HAVE_O_CLOEXEC) ZMQ_HAVE_O_CLOEXEC)
......
...@@ -87,7 +87,7 @@ class norm_engine_t : public io_object_t, public i_engine ...@@ -87,7 +87,7 @@ class norm_engine_t : public io_object_t, public i_engine
// These are used to feed data to decoder // These are used to feed data to decoder
// and its underlying "msg" buffer // and its underlying "msg" buffer
char *AccessBuffer () { return (char *) (buffer_ptr + buffer_count); } char *AccessBuffer () { return (char *) (buffer_ptr + buffer_count); }
size_t GetBytesNeeded () const { return (buffer_size - buffer_count); } size_t GetBytesNeeded () const { return buffer_size - buffer_count; }
void IncrementBufferCount (size_t count) { buffer_count += count; } void IncrementBufferCount (size_t count) { buffer_count += count; }
msg_t *AccessMsg () { return zmq_decoder->msg (); } msg_t *AccessMsg () { return zmq_decoder->msg (); }
// This invokes the decoder "decode" method // This invokes the decoder "decode" method
...@@ -106,7 +106,7 @@ class norm_engine_t : public io_object_t, public i_engine ...@@ -106,7 +106,7 @@ class norm_engine_t : public io_object_t, public i_engine
void Append (NormRxStreamState &item); void Append (NormRxStreamState &item);
void Remove (NormRxStreamState &item); void Remove (NormRxStreamState &item);
bool IsEmpty () const { return (NULL == head); } bool IsEmpty () const { return NULL == head; }
void Destroy (); void Destroy ();
......
...@@ -546,7 +546,7 @@ bool zmq::pipe_t::check_hwm () const ...@@ -546,7 +546,7 @@ bool zmq::pipe_t::check_hwm () const
{ {
const bool full = const bool full =
_hwm > 0 && _msgs_written - _peers_msgs_read >= uint64_t (_hwm); _hwm > 0 && _msgs_written - _peers_msgs_read >= uint64_t (_hwm);
return (!full); return !full;
} }
void zmq::pipe_t::send_hwms_to_peer (int inhwm_, int outhwm_) void zmq::pipe_t::send_hwms_to_peer (int inhwm_, int outhwm_)
......
...@@ -542,7 +542,7 @@ void zmq::select_t::cleanup_retired () ...@@ -542,7 +542,7 @@ void zmq::select_t::cleanup_retired ()
bool zmq::select_t::is_retired_fd (const fd_entry_t &entry_) bool zmq::select_t::is_retired_fd (const fd_entry_t &entry_)
{ {
return (entry_.fd == retired_fd); return entry_.fd == retired_fd;
} }
zmq::select_t::family_entry_t::family_entry_t () : has_retired (false) zmq::select_t::family_entry_t::family_entry_t () : has_retired (false)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment