-
Notifications
You must be signed in to change notification settings - Fork 883
Home
Takatoshi Kondo edited this page Apr 3, 2015
·
38 revisions
- msgpack-c version 1.1.x Coming soon!
- msgpack-c version 1.0.x
msgpack-c version 1.0.x introduces API versioning mechanism. It requires that users need to include msgpack-c header files in correct order. For example,
#include <msgpack_fwd.hpp>
// Write non-intrusive operator<< and >> overload declaration here.
#include <msgpack.hpp>
// Write other user codes here.
However, it is very difficult to maintain. msgpack-c version 1.1.x removed this header files inclusion rule. I strongly recomend to use msgpack-c version 1.1.x.
All you need to do is:
- replace msgpack_fwd.hpp with msgpack.hpp
- Update non-intrusive adaptation codes if you have them.
-
Home
- Q&A
- v2.0.x or later
- v1.1.x - v1.4.x
- v1.0.x