From 5e596b723ee1ec0bea7c60fb746ce87c590e89ed Mon Sep 17 00:00:00 2001 From: JinmingHu Date: Thu, 6 Aug 2020 07:47:20 +0800 Subject: [PATCH] Fix compiler warning (#403) --- sdk/storage/inc/blobs/protocol/blob_rest_client.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/storage/inc/blobs/protocol/blob_rest_client.hpp b/sdk/storage/inc/blobs/protocol/blob_rest_client.hpp index 1c5f46b21..6d12454a0 100644 --- a/sdk/storage/inc/blobs/protocol/blob_rest_client.hpp +++ b/sdk/storage/inc/blobs/protocol/blob_rest_client.hpp @@ -1091,7 +1091,7 @@ namespace Azure { namespace Storage { namespace Blobs { struct BlobContainerAccessPolicy { - PublicAccessType AccessType; + PublicAccessType AccessType = PublicAccessType::Private; std::string ETag; std::string LastModified; std::vector SignedIdentifiers;