From 1f30cc203a5e445b7d947c2ee9165790ed652bf6 Mon Sep 17 00:00:00 2001 From: Nobuyuki Kubota Date: Tue, 9 Apr 2013 17:38:49 -0700 Subject: [PATCH] Temporary fix for a compilation error on OS X fixes #3 fixes #15 --- src/unpack.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/unpack.c b/src/unpack.c index d66dc56b..4afc05e2 100644 --- a/src/unpack.c +++ b/src/unpack.c @@ -462,3 +462,7 @@ bool msgpack_unpack_next(msgpack_unpacked* result, return true; } +// FIXME: Dirty hack to avoid a bus error caused by OS X's old gcc. +static void dummy_function_to_avoid_bus_error() +{ +}