Commit 6567fb7f authored by Paul's avatar Paul
Browse files

Fix missing return

parent dc33cc95
...@@ -157,15 +157,12 @@ MSGPACK_API_VERSION_NAMESPACE(MSGPACK_DEFAULT_API_NS) ...@@ -157,15 +157,12 @@ MSGPACK_API_VERSION_NAMESPACE(MSGPACK_DEFAULT_API_NS)
break; break;
} }
case msgpack::type::MAP: case msgpack::type::MAP:
case msgpack::type::BIN: { case msgpack::type::BIN:
MIGRAPHX_THROW("Unexpected msgpack type"); MIGRAPHX_THROW("Unexpected msgpack type");
break; case msgpack::type::EXT:
}
case msgpack::type::EXT: {
MIGRAPHX_THROW("msgpack EXT type not supported."); MIGRAPHX_THROW("msgpack EXT type not supported.");
} }
return o; return o;
}
} }
}; };
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment