Zserio C++ runtime library  1.0.2
Built for Zserio 2.14.1
RebindAlloc.h
Go to the documentation of this file.
1 #ifndef ZSERIO_REBIND_ALLOC_H_INC
2 #define ZSERIO_REBIND_ALLOC_H_INC
3 
4 #include <memory>
5 
6 namespace zserio
7 {
8 
9 template <typename ALLOC, typename T>
10 using RebindAlloc = typename std::allocator_traits<ALLOC>::template rebind_alloc<T>;
11 
12 } // namespace zserio
13 
14 #endif // ZSERIO_REBIND_ALLOC_H_INC
typename std::allocator_traits< ALLOC >::template rebind_alloc< T > RebindAlloc
Definition: RebindAlloc.h:10