summaryrefslogtreecommitdiff
path: root/src/mongo/util/uuid.h
diff options
context:
space:
mode:
authorNathan Myers <nathan.myers@10gen.com>2017-10-17 14:07:38 -0400
committerNathan Myers <nathan.myers@10gen.com>2017-10-17 14:07:38 -0400
commitaeabbf96ff3c2990f553ba0a5e6e1d18ebddab2f (patch)
treecfb67393fadfd03d0c40d5082711da5dfa44edc4 /src/mongo/util/uuid.h
parentbd0c03a8816985f74f7bd24245aa81f9cb5b37f7 (diff)
downloadmongo-aeabbf96ff3c2990f553ba0a5e6e1d18ebddab2f.tar.gz
SERVER-31191 Plumb Collection UUIDs through catalog cache
Diffstat (limited to 'src/mongo/util/uuid.h')
-rw-r--r--src/mongo/util/uuid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/uuid.h b/src/mongo/util/uuid.h
index 87939e91e96..d5c3f7c71b3 100644
--- a/src/mongo/util/uuid.h
+++ b/src/mongo/util/uuid.h
@@ -180,7 +180,7 @@ public:
private:
UUID(const UUIDStorage& uuid) : _uuid(uuid) {}
- UUIDStorage _uuid; // UUID in network byte order
+ UUIDStorage _uuid{}; // UUID in network byte order
};
inline std::ostream& operator<<(std::ostream& s, const UUID& uuid) {