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