libER 0.1.4.2
ELDEN RING API library
Loading...
Searching...
No Matches
from_unordered_set.hpp
Go to the documentation of this file.
1
8#pragma once
9
10#if defined(_ITERATOR_DEBUG_LEVEL) && _ITERATOR_DEBUG_LEVEL > 0
11#error "_ITERATOR_DEBUG_LEVEL" must be defined as "0" for STL containers to be compatible with the ELDEN RING ABI.
12#endif
13
15#include <unordered_set>
16
17namespace from {
22template <typename T, typename Hash, typename Eq>
24 std::unordered_set<T, Hash, Eq, from::allocator<T>>;
25} // namespace from
ELDEN RING allocation interface and from::allocator.
std::unordered_set< T, Hash, Eq, from::allocator< T > > unordered_set
std::unordered_set with from::allocator.
Definition from_unordered_set.hpp:24