mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-12 10:33:52 +01:00
fix warning unused but set variable
This commit is contained in:
parent
6c9103433f
commit
aac1c8ac50
@ -396,8 +396,8 @@ public:
|
||||
// Self test
|
||||
static int test()
|
||||
{
|
||||
bool ok = true;
|
||||
float num = 0;
|
||||
bool ok = true; (void) ok;
|
||||
float num = 0; (void) num;
|
||||
std::string str = "";
|
||||
message_t msg;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user