summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/index_entry_comparison.h
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2019-10-01 22:29:40 +0000
committerevergreen <evergreen@mongodb.com>2019-10-01 22:29:40 +0000
commit32615d54bab1284b28443d493ef5f32a2cdeaf20 (patch)
tree4543f5e109a47f059c03c15295d8c9c81efecd92 /src/mongo/db/storage/index_entry_comparison.h
parent8be05f0607113b2406d6d6c4fc5c0f998b012812 (diff)
downloadmongo-32615d54bab1284b28443d493ef5f32a2cdeaf20.tar.gz
SERVER-42974 Validate should work with KeyString instead of BSON where possible
Diffstat (limited to 'src/mongo/db/storage/index_entry_comparison.h')
-rw-r--r--src/mongo/db/storage/index_entry_comparison.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/storage/index_entry_comparison.h b/src/mongo/db/storage/index_entry_comparison.h
index eefdbf1bb01..4fc93d21caf 100644
--- a/src/mongo/db/storage/index_entry_comparison.h
+++ b/src/mongo/db/storage/index_entry_comparison.h
@@ -89,8 +89,8 @@ struct KeyStringEntry {
invariant(loc == KeyString::decodeRecordIdAtEnd(ks.getBuffer(), ks.getSize()));
}
- const KeyString::Value keyString;
- const RecordId loc;
+ KeyString::Value keyString;
+ RecordId loc;
};
/**