diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-03-17 04:37:43 +0100 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-03-17 04:37:43 +0100 |
commit | 8dc957ae06366d023e0d23c92279c5fb04b515d0 (patch) | |
tree | 88f5add0685b47069022cf6fa64223a1750ade90 /src/httpserver.cpp | |
parent | 8040ae6fc576e9504186f2ae3ff2c8125de1095c (diff) |
Remove unused code
Diffstat (limited to 'src/httpserver.cpp')
-rw-r--r-- | src/httpserver.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp index e1763c6ad2..dbd08ff2e1 100644 --- a/src/httpserver.cpp +++ b/src/httpserver.cpp @@ -146,13 +146,6 @@ public: while (numThreads > 0) cond.wait(lock); } - - /** Return current depth of queue */ - size_t Depth() - { - std::unique_lock<std::mutex> lock(cs); - return queue.size(); - } }; struct HTTPPathHandler |