summaryrefslogtreecommitdiffstats
path: root/filedistribution
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-09-14 20:57:52 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-09-14 20:57:52 +0000
commitbe80c07cc106f02e5be8453030557dbafb9e85ce (patch)
tree116fbb68c59c215a25bf87ebb758bc4f68dad887 /filedistribution
parente3a1b7a03afe45131e5429c7ea3f60b7abf2e5aa (diff)
Remove unused _closed member.
Diffstat (limited to 'filedistribution')
-rw-r--r--filedistribution/src/tests/scheduler/test-scheduler.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/filedistribution/src/tests/scheduler/test-scheduler.cpp b/filedistribution/src/tests/scheduler/test-scheduler.cpp
index c8afca84f26..a9249bbdcae 100644
--- a/filedistribution/src/tests/scheduler/test-scheduler.cpp
+++ b/filedistribution/src/tests/scheduler/test-scheduler.cpp
@@ -21,11 +21,9 @@ class TestException {};
struct CallRun {
volatile bool _caughtException;
- std::atomic<bool> _closed;
CallRun()
- :_caughtException(false),
- _closed(false)
+ :_caughtException(false)
{}
void operator()(asio::io_service& ioService) {