summaryrefslogtreecommitdiff
path: root/src/mongo/db/client.h
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-04-07 13:28:49 -0400
committerAndy Schwerin <schwerin@mongodb.com>2015-04-13 12:37:24 -0400
commit9fd721875c698ecc1541662175e2febfd366e224 (patch)
tree5e52926c9fd706506a92edda89ab475620fa5d86 /src/mongo/db/client.h
parent04fd70038ba9c332185d816799935e7d37cecb7b (diff)
downloadmongo-9fd721875c698ecc1541662175e2febfd366e224.tar.gz
SERVER-17817 Move OpDebug function implementations to curop.cpp from client.cpp.
Also, make Client::shutdown have void return type, since nobody consults it.
Diffstat (limited to 'src/mongo/db/client.h')
-rw-r--r--src/mongo/db/client.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/client.h b/src/mongo/db/client.h
index b2a6dbf6950..1b1dc51b251 100644
--- a/src/mongo/db/client.h
+++ b/src/mongo/db/client.h
@@ -94,7 +94,7 @@ namespace mongo {
/** this has to be called as the client goes away, but before thread termination
* @return true if anything was done
*/
- bool shutdown();
+ void shutdown();
std::string clientAddress(bool includePort = false) const;
const std::string& desc() const { return _desc; }