summaryrefslogtreecommitdiff
path: root/src/mongo/db/client.h
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2016-04-26 19:25:09 -0400
committerMathias Stearn <mathias@10gen.com>2016-05-10 14:23:16 -0400
commitbef7b9a89f3a24ed563e958ab789595ac1cc39cc (patch)
treef3baed779e45e03a6f80b1b96dd31fb16f47b1b4 /src/mongo/db/client.h
parent23c5d7e44c5447769a46e6d4e10ae6237e8de5fd (diff)
downloadmongo-bef7b9a89f3a24ed563e958ab789595ac1cc39cc.tar.gz
SERVER-23873 Optimize checking for interrupt
Diffstat (limited to 'src/mongo/db/client.h')
-rw-r--r--src/mongo/db/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/client.h b/src/mongo/db/client.h
index 5a500f4cf78..407a0bac868 100644
--- a/src/mongo/db/client.h
+++ b/src/mongo/db/client.h
@@ -38,7 +38,6 @@
#include "mongo/db/client_basic.h"
#include "mongo/db/namespace_string.h"
-#include "mongo/db/operation_context.h"
#include "mongo/db/service_context.h"
#include "mongo/platform/random.h"
#include "mongo/platform/unordered_set.h"
@@ -48,8 +47,9 @@
namespace mongo {
-class Collection;
class AbstractMessagingPort;
+class Collection;
+class OperationContext;
typedef long long ConnectionId;