From 091e15a28d2d04ed2e0ae0ed08b06a987b81e29f Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Fri, 19 Apr 2019 12:16:01 -0700 Subject: [PATCH] Add include to fix uClibc++ compilation Under uClibc++, streamoff is defined in . This header is needed to fix compilation. --- src/blob.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/blob.hpp b/src/blob.hpp index c14633c2..54221618 100644 --- a/src/blob.hpp +++ b/src/blob.hpp @@ -36,6 +36,7 @@ #include #include #include +#include #if __cplusplus >= 201103L || defined(_MSC_VER) && _MSC_VER > 1700 #define ZMQ_HAS_MOVE_SEMANTICS