/*----------------------------------------------------------------------------- | Copyright (c) 2013-2019, Nucleic Development Team. | | Distributed under the terms of the Modified BSD License. | | The full license is in the file LICENSE, distributed with this software. |----------------------------------------------------------------------------*/ #pragma once #include #include #include #include #include "AssocVector.h" namespace kiwi { namespace impl { template < typename K, typename V, typename C = std::less, typename A = std::allocator>> using MapType = Loki::AssocVector; // template< // typename K, // typename V, // typename C = std::less, // typename A = std::allocator< std::pair > > // using MapType = std::map; } // namespace impl } // namespace kiwi