From a0fded0c56a18c03800fb1fba0c6818bf3641492 Mon Sep 17 00:00:00 2001 From: Kan Tang Date: Wed, 6 Jan 2021 17:12:33 +0800 Subject: [PATCH] =?UTF-8?q?use=20bracket=20instead=20of=20quotation=20mark?= =?UTF-8?q?=20for=20header=20files=20not=20in=20current=E2=80=A6=20(#1271)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … package Resolves https://github.com/Azure/azure-sdk-for-cpp/issues/1211 # 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? --- .../protocol/datalake_rest_client.hpp | 21 +++++++++-------- .../shares/protocol/share_rest_client.hpp | 23 ++++++++++--------- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/sdk/storage/azure-storage-files-datalake/inc/azure/storage/files/datalake/protocol/datalake_rest_client.hpp b/sdk/storage/azure-storage-files-datalake/inc/azure/storage/files/datalake/protocol/datalake_rest_client.hpp index 174879cbb..85f1ea063 100644 --- a/sdk/storage/azure-storage-files-datalake/inc/azure/storage/files/datalake/protocol/datalake_rest_client.hpp +++ b/sdk/storage/azure-storage-files-datalake/inc/azure/storage/files/datalake/protocol/datalake_rest_client.hpp @@ -4,24 +4,25 @@ #pragma once -#include "azure/core/datetime.hpp" -#include "azure/core/http/http.hpp" -#include "azure/core/http/pipeline.hpp" -#include "azure/core/nullable.hpp" -#include "azure/core/response.hpp" -#include "azure/storage/common/crypt.hpp" -#include "azure/storage/common/storage_common.hpp" -#include "azure/storage/common/storage_exception.hpp" - #include #include #include #include -#include #include #include #include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + namespace Azure { namespace Storage { namespace Files { namespace DataLake { namespace Details { diff --git a/sdk/storage/azure-storage-files-shares/inc/azure/storage/files/shares/protocol/share_rest_client.hpp b/sdk/storage/azure-storage-files-shares/inc/azure/storage/files/shares/protocol/share_rest_client.hpp index abdf6ceae..24bb25a77 100644 --- a/sdk/storage/azure-storage-files-shares/inc/azure/storage/files/shares/protocol/share_rest_client.hpp +++ b/sdk/storage/azure-storage-files-shares/inc/azure/storage/files/shares/protocol/share_rest_client.hpp @@ -4,25 +4,26 @@ #pragma once -#include "azure/core/datetime.hpp" -#include "azure/core/http/http.hpp" -#include "azure/core/http/pipeline.hpp" -#include "azure/core/nullable.hpp" -#include "azure/core/response.hpp" -#include "azure/storage/common/crypt.hpp" -#include "azure/storage/common/storage_common.hpp" -#include "azure/storage/common/storage_exception.hpp" -#include "azure/storage/common/xml_wrapper.hpp" - #include #include #include #include -#include #include #include #include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + namespace Azure { namespace Storage { namespace Files { namespace Shares { namespace Details {