diff options
| author | practicalswift <[email protected]> | 2017-03-17 04:37:43 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-03-17 04:37:43 +0100 |
| commit | 8dc957ae06366d023e0d23c92279c5fb04b515d0 (patch) | |
| tree | 88f5add0685b47069022cf6fa64223a1750ade90 /src/httpserver.cpp | |
| parent | Merge #9963: util: Properly handle errors during log message formatting (diff) | |
| download | discoin-8dc957ae06366d023e0d23c92279c5fb04b515d0.tar.xz discoin-8dc957ae06366d023e0d23c92279c5fb04b515d0.zip | |
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 e1763c6ad..dbd08ff2e 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 |