Fixed an unused function warning.

This fix is a part of issue #33.
35ba41c245
This commit is contained in:
Takatoshi Kondo 2013-11-27 10:33:52 +09:00
parent 6f56345dd8
commit be67d3e362

View File

@ -462,7 +462,9 @@ bool msgpack_unpack_next(msgpack_unpacked* result,
return true;
}
#if defined(MSGPACK_OLD_COMPILER_BUS_ERROR_WORKAROUND)
// FIXME: Dirty hack to avoid a bus error caused by OS X's old gcc.
static void dummy_function_to_avoid_bus_error()
{
}
#endif