Usermode/libc++ - Starting on a hacky STL implementation
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / include_exp / memory
1
2 #ifndef _LIBCXX_MEMORY_
3 #define _LIBCXX_MEMORY_
4
5 namespace std {
6
7 template <>
8 class allocator<void>
9 {
10 public:
11   typedef void* pointer;
12   typedef const void* const_pointer;
13   typedef void value_type;
14   template <class U> struct rebind { typedef allocator<U> other; };
15 };
16
17 }
18
19 #endif
20

UCC git Repository :: git.ucc.asn.au