Added the new mapping:

std::vector<char> is mapped to BIN.

So, currently BIN, STR, and ARRAY mappings are as follows:
  std::vector<char> is mapped to BIN
  std::string       is mapped to STR
  std::vector<T>    is mapped to ARRAY // T is not char
This commit is contained in:
Takatoshi Kondo
2014-08-04 15:14:39 +09:00
parent 66014eebc0
commit 15a0d61a64
3 changed files with 92 additions and 0 deletions

View File

@@ -12,6 +12,7 @@
#include "adaptor/set.hpp"
#include "adaptor/string.hpp"
#include "adaptor/vector.hpp"
#include "adaptor/vector_char.hpp"
#include "adaptor/msgpack_tuple.hpp"
#include "adaptor/define.hpp"
#include "adaptor/tr1/unordered_map.hpp"