Files
integration/luprex/core/wrap/wrap-map.hpp

13 lines
263 B
C++
Raw Normal View History

#ifndef WRAP_MAP_HPP
#define WRAP_MAP_HPP
2022-02-28 21:57:54 -05:00
#include "eng-malloc.hpp"
#include <map>
namespace eng {
template<class K, class V, class C=std::less<K>>
using map = std::map<K, V, C, eng::allocator<std::pair<const K, V>>>;
} // namespace eng
#endif // WRAP_MAP_HPP