summaryrefslogtreecommitdiff
path: root/src/mongo/util/net/message.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/net/message.h')
-rw-r--r--src/mongo/util/net/message.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/util/net/message.h b/src/mongo/util/net/message.h
index d83492e519c..fa4bbb19d90 100644
--- a/src/mongo/util/net/message.h
+++ b/src/mongo/util/net/message.h
@@ -337,7 +337,8 @@ inline int ConstView::dataLen() const {
class Message {
public:
- // we assume here that a vector with initial size 0 does no allocation (0 is the default, but wanted to make it explicit).
+ // we assume here that a vector with initial size 0 does no allocation (0 is the default, but
+ // wanted to make it explicit).
Message() : _buf(0), _data(0), _freeIt(false) {}
Message(void* data, bool freeIt) : _buf(0), _data(0), _freeIt(false) {
_setData(reinterpret_cast<char*>(data), freeIt);
@@ -493,7 +494,8 @@ private:
}
// if just one buffer, keep it in _buf, otherwise keep a sequence of buffers in _data
char* _buf;
- // byte buffer(s) - the first must contain at least a full MsgData unless using _buf for storage instead
+ // byte buffer(s) - the first must contain at least a full MsgData unless using _buf for storage
+ // instead
typedef std::vector<std::pair<char*, int>> MsgVec;
MsgVec _data;
bool _freeIt;