summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/record_data.h
diff options
context:
space:
mode:
authorMaria van Keulen <maria@mongodb.com>2017-02-21 14:28:42 -0500
committerMaria van Keulen <maria@mongodb.com>2017-02-24 14:32:48 -0500
commit242f3713017a0b754c8fac55e70bacc48c54c96f (patch)
tree577061e1c262505d16e9b0403087cae6f7077a5b /src/mongo/db/storage/record_data.h
parent8095f88f2829c3f303f396b0662566e7340f1f9b (diff)
downloadmongo-242f3713017a0b754c8fac55e70bacc48c54c96f.tar.gz
SERVER-27887 Update comment to reflect _dataPtr to _ownedData refactor
Diffstat (limited to 'src/mongo/db/storage/record_data.h')
-rw-r--r--src/mongo/db/storage/record_data.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mongo/db/storage/record_data.h b/src/mongo/db/storage/record_data.h
index 746f785d872..31526bbd32a 100644
--- a/src/mongo/db/storage/record_data.h
+++ b/src/mongo/db/storage/record_data.h
@@ -38,9 +38,7 @@ namespace mongo {
// TODO: Does this need to have move support?
/**
* A replacement for the Record class. This class represents data in a record store.
- * The _dataPtr attribute is used to manage memory ownership. If _dataPtr is NULL, then
- * the memory pointed to by _data is owned by the RecordStore. If _dataPtr is not NULL, then
- * it must point to the same array as _data.
+ * The _ownedData attribute is used to manage memory ownership.
*/
class RecordData {
public: