prime/include/rstl/map.hpp

16 lines
252 B
C++
Raw Normal View History

#ifndef _RSTL_MAP_HPP
#define _RSTL_MAP_HPP
#include "types.h"
2022-08-09 23:03:51 +00:00
#include "rstl/rmemory_allocator.hpp"
namespace rstl {
template < typename K, typename V, typename Alloc = rmemory_allocator >
class map {
u8 pad[0x10];
};
} // namespace rstl
#endif