Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#pragma once

#include "azure/core/azure_assert.hpp"
#include <azure/core/azure_assert.hpp>

#include <memory>
#include <stdexcept>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Licensed under the MIT License. See License.txt in the project root for license information.

#pragma once
#include <azure/data/tables/internal/xml_wrapper.hpp>
#include <azure/data/tables/models.hpp>
#include "azure/data/tables/internal/xml_wrapper.hpp"
#include "azure/data/tables/models.hpp"

#include <cstdint>
#include <memory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@

#pragma once

#include "azure/data/tables/credentials/shared_key_credential.hpp"
#include "azure/data/tables/models.hpp"
#include "azure/data/tables/transactions.hpp"

#include <azure/core/credentials/credentials.hpp>
#include <azure/core/http/http.hpp>
#include <azure/core/http/policies/policy.hpp>
#include <azure/core/internal/http/pipeline.hpp>
#include <azure/core/internal/json/json.hpp>
#include <azure/core/response.hpp>
#include <azure/data/tables/credentials/shared_key_credential.hpp>
#include <azure/data/tables/models.hpp>
#include <azure/data/tables/transactions.hpp>

#include <cstdint>
#include <memory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@

#pragma once

#include "azure/data/tables/models.hpp"

#include <azure/core/url.hpp>
#include <azure/core/uuid.hpp>
#include <azure/data/tables/models.hpp>

namespace Azure { namespace Data { namespace Tables {
/**
Expand Down
2 changes: 1 addition & 1 deletion sdk/tables/azure-data-tables/test/ut/macro_guard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
#define max(x, y) small
#define min(x, y) small

#include <azure/data/tables.hpp>
#include "azure/data/tables.hpp"
5 changes: 2 additions & 3 deletions sdk/tables/azure-data-tables/test/ut/serializers_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#include "azure/data/tables/internal/serializers.hpp"
#include "azure/data/tables/tables_clients.hpp"
#include "test/ut/test_base.hpp"

#include <azure/data/tables/internal/serializers.hpp>
#include <azure/data/tables/tables_clients.hpp>

namespace Azure { namespace Data { namespace Test {

class SerializersTest : public Azure::Storage::Test::StorageTest {
Expand Down
5 changes: 2 additions & 3 deletions sdk/tables/azure-data-tables/test/ut/transactions_test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#include "azure/data/tables/tables_clients.hpp"
#include "azure/data/tables/transactions.hpp"
#include "test/ut/test_base.hpp"

#include <azure/data/tables/tables_clients.hpp>
#include <azure/data/tables/transactions.hpp>

namespace Azure { namespace Data { namespace Test {

class TransactionsBodyTest : public Azure::Storage::Test::StorageTest {
Expand Down