diff options
author | Max Kellermann <max@duempel.org> | 2013-12-21 18:28:06 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-21 21:21:25 +0100 |
commit | 6416198e9f57e4ea59a9bdc4deb2856c562681e6 (patch) | |
tree | f022a0c5ea88232228e0a20e5a6776e82d8d485d /src | |
parent | 3c4cd9d08b74d5da62ad95c77e42055c5578ba3b (diff) |
event/PollGroupPoll: include stddef.h instead of string.h
Diffstat (limited to 'src')
-rw-r--r-- | src/event/PollGroupPoll.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/event/PollGroupPoll.hxx b/src/event/PollGroupPoll.hxx index e8850ebb5..6c69787ac 100644 --- a/src/event/PollGroupPoll.hxx +++ b/src/event/PollGroupPoll.hxx @@ -23,9 +23,10 @@ #include "check.h" #include "PollResultGeneric.hxx" -#include <string.h> // for size_t #include <vector> #include <unordered_map> + +#include <stddef.h> #include <sys/poll.h> class PollGroupPoll |