1 Index: libtorrent/src/net/socket_set.h
2 ===================================================================
3 --- libtorrent/src/net/socket_set.h (revision 1121)
4 +++ libtorrent/src/net/socket_set.h (working copy)
7 // Propably should rename to EventSet...
9 -class SocketSet : private std::vector<Event*, rak::cacheline_allocator<> > {
10 +class SocketSet : private std::vector<Event*, rak::cacheline_allocator<Event*> > {
12 typedef uint32_t size_type;
14 - typedef std::vector<Event*, rak::cacheline_allocator<> > base_type;
15 - typedef std::vector<size_type, rak::cacheline_allocator<> > Table;
16 + typedef std::vector<Event*, rak::cacheline_allocator<Event*> > base_type;
17 + typedef std::vector<size_type, rak::cacheline_allocator<size_type> > Table;
19 static const size_type npos = static_cast<size_type>(-1);