diff options
author | Christian Pointner <equinox@anytun.org> | 2016-07-03 01:30:11 +0200 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2016-07-03 01:31:22 +0200 |
commit | 16abad80ef9808f2f5bb8420d2afab2111eec502 (patch) | |
tree | 1b5c9763d134ffda7eb5ee5b892038a1de881b6d /src/packetSource.h | |
parent | std::auto_ptr is deprecated sinc C++0x use boost:scoped_ptr and boost::shared... (diff) |
fixed boost::bind problem with resolver on GCC-6
Diffstat (limited to 'src/packetSource.h')
-rw-r--r-- | src/packetSource.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packetSource.h b/src/packetSource.h index 14ea9e9..a6656e3 100644 --- a/src/packetSource.h +++ b/src/packetSource.h @@ -83,7 +83,7 @@ public: uint32_t recv(uint8_t* buf, uint32_t len, PacketSourceEndpoint& remote); void send(uint8_t* buf, uint32_t len, PacketSourceEndpoint remote); - void onResolve(PacketSourceResolverIt& it); + void onResolve(PacketSourceResolverIt it); void onError(const std::runtime_error& e); private: |