Merge pull request #1981 from hitstergtd/x-unused-req

Problem: hint parameter throws unused warning
This commit is contained in:
Luca Boccassi 2016-05-11 15:57:12 +01:00
commit 4ad68e0dfe

View File

@ -28,6 +28,7 @@
*/
#include "precompiled.hpp"
#include "macros.hpp"
#include "req.hpp"
#include "err.hpp"
#include "msg.hpp"
@ -39,6 +40,7 @@ extern "C"
{
static void free_id (void *data, void *hint)
{
LIBZMQ_UNUSED (hint);
free (data);
}
}