Make cppcheck not complain about "'operator=' should return something"

Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
This commit is contained in:
Martin Sustrik
2011-01-13 11:44:23 +01:00
parent 7051387108
commit 18f29ded6a
52 changed files with 59 additions and 55 deletions

View File

@@ -113,7 +113,7 @@ namespace zmq
bool terminating;
reader_t (const reader_t&);
void operator = (const reader_t&);
const reader_t &operator = (const reader_t&);
};
struct i_writer_events
@@ -205,7 +205,7 @@ namespace zmq
bool terminating;
writer_t (const writer_t&);
void operator = (const writer_t&);
const writer_t &operator = (const writer_t&);
};
}