Replaced const msgpack::object with const msgpack::object&.

This commit is contained in:
Takatoshi Kondo 2015-05-20 12:49:56 +09:00
parent 432c9cc542
commit e979f04d75

View File

@ -368,7 +368,7 @@ inline bool operator!=(const msgpack::object& x, const msgpack::object& y)
{ return !(x == y); }
template <typename T>
inline bool operator==(const T& y, const msgpack::object x)
inline bool operator==(const T& y, const msgpack::object& x)
{ return x == y; }
template <typename T>