Takatoshi Kondo 3c271892e3 Fixed #399
If MSGPACK_DISABLE_LEGACY_CONVERT is defined, msgpack::object::convert(T*) is removed.
Added MSGPACK_DISABLE_LEGACY_CONVERT to build system and documents.

Please define MSGPACK_DISABLE_LEGACY_CONVERT and update your code as follows:
Replace
  int i;
  obj.convert(&i); // Removed pointer version
with
  int i;
  obj.convert(i);  // Reference version
2016-01-21 22:28:53 +09:00
..
2016-01-18 22:12:38 +09:00
2015-08-12 13:55:51 +09:00
2014-06-05 20:49:15 +00:00
2015-08-12 13:55:51 +09:00
2014-06-05 20:49:15 +00:00
2016-01-21 22:28:53 +09:00
2016-01-21 22:28:53 +09:00
2016-01-21 22:28:53 +09:00
2015-11-12 00:20:21 +09:00
2015-11-12 00:20:21 +09:00
2015-11-12 00:20:21 +09:00
2015-08-31 14:06:39 +09:00
2016-01-21 22:28:53 +09:00
2014-09-09 14:29:10 +09:00
2016-01-21 22:28:53 +09:00
2015-09-04 18:51:53 +09:00
2015-08-12 13:55:51 +09:00
2015-11-21 12:41:46 +09:00
2016-01-21 22:28:53 +09:00