summaryrefslogtreecommitdiff
path: root/utils/LocIpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/LocIpc.h')
-rw-r--r--utils/LocIpc.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/LocIpc.h b/utils/LocIpc.h
index a1a994d..87f2ff8 100644
--- a/utils/LocIpc.h
+++ b/utils/LocIpc.h
@@ -44,7 +44,7 @@ class LocIpcSender;
class LocIpc {
friend LocIpcSender;
public:
- inline LocIpc() : mIpcFd(-1), mStopRequested(false), mRunnable(nullptr) {}
+ inline LocIpc() : mIpcFd(-1), mRunnable(nullptr) {}
inline virtual ~LocIpc() { stopListening(); }
// Listen for new messages in current thread. Calling this funciton will
@@ -93,7 +93,6 @@ private:
const uint8_t data[], uint32_t length);
int mIpcFd;
- bool mStopRequested;
LocThread mThread;
LocRunnable *mRunnable;
};