packages/libs/libtorrent/patches/121-fix-socket_set-template.diff

21 lines
845 B
Diff
Raw Normal View History

Index: libtorrent/src/net/socket_set.h
===================================================================
--- libtorrent/src/net/socket_set.h (revision 1121)
+++ libtorrent/src/net/socket_set.h (working copy)
@@ -53,12 +53,12 @@
// Propably should rename to EventSet...
-class SocketSet : private std::vector<Event*, rak::cacheline_allocator<> > {
+class SocketSet : private std::vector<Event*, rak::cacheline_allocator<Event*> > {
public:
typedef uint32_t size_type;
- typedef std::vector<Event*, rak::cacheline_allocator<> > base_type;
- typedef std::vector<size_type, rak::cacheline_allocator<> > Table;
+ typedef std::vector<Event*, rak::cacheline_allocator<Event*> > base_type;
+ typedef std::vector<size_type, rak::cacheline_allocator<size_type> > Table;
static const size_type npos = static_cast<size_type>(-1);