Sha256: 11f9da0a97ae7f7e4ce668d6a36af1a9435c1d4f8429bc3958f5e4dbb5f1bcfb
Contents?: true
Size: 812 Bytes
Versions: 36
Compression:
Stored size: 812 Bytes
Contents
// // MessagePack for C++ static resolution routine // // Copyright (C) 2008-2016 FURUHASHI Sadayuki and KONDO Takatoshi // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // #ifndef MSGPACK_V1_TYPE_MAP_DECL_HPP #define MSGPACK_V1_TYPE_MAP_DECL_HPP #include "msgpack/versioning.hpp" #include <algorithm> namespace msgpack { /// @cond MSGPACK_API_VERSION_NAMESPACE(v1) { /// @endcond namespace type { template <typename K, typename V, typename Compare = std::less<K>, typename Alloc = std::allocator<std::pair<K, V> > > class assoc_vector; } //namespace type /// @cond } // MSGPACK_API_VERSION_NAMESPACE(v1) /// @endcond } // namespace msgpack #endif // MSGPACK_V1_TYPE_MAP_DECL_HPP
Version data entries
36 entries across 36 versions & 2 rubygems