summaryrefslogtreecommitdiff
path: root/src/mongo/db/dbmessage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/dbmessage.h')
-rw-r--r--src/mongo/db/dbmessage.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/mongo/db/dbmessage.h b/src/mongo/db/dbmessage.h
index c4c8bd3b243..82a0f80a475 100644
--- a/src/mongo/db/dbmessage.h
+++ b/src/mongo/db/dbmessage.h
@@ -445,11 +445,8 @@ Message makeGetMoreMessage(StringData ns, long long cursorId, int nToReturn, int
struct DbResponse {
Message response; // If empty, nothing will be returned to the client.
std::string exhaustNS; // Namespace of cursor if exhaust mode, else "".
-
- /**
- * Cursor ID when running on exhaust mode. Defaults to '0', indicating
- * that the cursor is exhausted.
- */
+ // Cursor ID when running on exhaust mode. Defaults to '0', indicating
+ // that the cursor is exhausted.
long long exhaustCursorId = 0;
};