summaryrefslogtreecommitdiff
path: root/src/poll.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/poll.hpp')
-rw-r--r--src/poll.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/poll.hpp b/src/poll.hpp
index bc5fb5c..82713db 100644
--- a/src/poll.hpp
+++ b/src/poll.hpp
@@ -76,7 +76,8 @@ namespace zmq
};
// This table stores data for registered descriptors.
- std::vector <fd_entry_t> fd_table;
+ typedef std::vector <fd_entry_t> fd_table_t;
+ fd_table_t fd_table;
// Pollset to pass to the poll function.
typedef std::vector <pollfd> pollset_t;