From aeabbf96ff3c2990f553ba0a5e6e1d18ebddab2f Mon Sep 17 00:00:00 2001 From: Nathan Myers Date: Tue, 17 Oct 2017 14:07:38 -0400 Subject: SERVER-31191 Plumb Collection UUIDs through catalog cache --- src/mongo/util/uuid.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mongo/util/uuid.h') 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) { -- cgit v1.2.1