Files
integration/luprex/core/wrap/wrap-map.hpp
2022-02-28 21:57:54 -05:00

13 lines
263 B
C++

#ifndef WRAP_MAP_HPP
#define WRAP_MAP_HPP
#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