From 19d4833ce74bf9ca33d9623072f5b3cd050b1deb Mon Sep 17 00:00:00 2001 From: JinmingHu Date: Wed, 6 Jan 2021 15:09:28 +0800 Subject: [PATCH] Fix auto-generator bug (#1273) # Pull Request Checklist Please leverage this checklist as a reminder to address commonly occurring feedback when submitting a pull request to make sure your PR can be reviewed quickly: See the detailed list in the [contributing guide](https://github.com/Azure/azure-sdk-for-cpp/blob/master/CONTRIBUTING.md#pull-requests). - [x] [C++ Guidelines](https://azure.github.io/azure-sdk/cpp_introduction.html) - [x] Doxygen docs - [x] Unit tests - [x] No unwanted commits/changes - [x] Descriptive title/description - [x] PR is single purpose - [x] Related issue listed - [x] Comments in source - [x] No typos - [x] Update changelog - [x] Not work-in-progress - [x] External references or docs updated - [x] Self review of PR done - [x] Any breaking changes? Fixes https://github.com/Azure/azure-sdk-for-cpp/issues/1263 --- sdk/storage/azure-storage-blobs/src/blob_rest_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/storage/azure-storage-blobs/src/blob_rest_client.cpp b/sdk/storage/azure-storage-blobs/src/blob_rest_client.cpp index bdb9ed149..335584cf6 100644 --- a/sdk/storage/azure-storage-blobs/src/blob_rest_client.cpp +++ b/sdk/storage/azure-storage-blobs/src/blob_rest_client.cpp @@ -70,7 +70,7 @@ namespace Azure { namespace Storage { namespace Blobs { namespace Models { const PublicAccessType PublicAccessType::BlobContainer("container"); const PublicAccessType PublicAccessType::Blob("blob"); - const PublicAccessType PublicAccessType::Private("Private"); + const PublicAccessType PublicAccessType::Private(""); const RehydratePriority RehydratePriority::High("High"); const RehydratePriority RehydratePriority::Standard("Standard");