int -> int32_t (#2290)
This commit is contained in:
parent
00dfcc2beb
commit
d8214af143
@ -542,7 +542,7 @@ namespace Azure { namespace Storage { namespace Blobs {
|
||||
/**
|
||||
* @brief The maximum number of threads that may be used in a parallel transfer.
|
||||
*/
|
||||
int Concurrency = 5;
|
||||
int32_t Concurrency = 5;
|
||||
} TransferOptions;
|
||||
};
|
||||
|
||||
@ -749,7 +749,7 @@ namespace Azure { namespace Storage { namespace Blobs {
|
||||
/**
|
||||
* @brief The maximum number of threads that may be used in a parallel transfer.
|
||||
*/
|
||||
int Concurrency = 5;
|
||||
int32_t Concurrency = 5;
|
||||
} TransferOptions;
|
||||
};
|
||||
|
||||
|
||||
@ -23,13 +23,13 @@ namespace Azure { namespace Storage { namespace Blobs { namespace _detail {
|
||||
class PackageVersion final {
|
||||
public:
|
||||
/// Major numeric identifier.
|
||||
static constexpr int Major = AZURE_STORAGE_BLOBS_VERSION_MAJOR;
|
||||
static constexpr int32_t Major = AZURE_STORAGE_BLOBS_VERSION_MAJOR;
|
||||
|
||||
/// Minor numeric identifier.
|
||||
static constexpr int Minor = AZURE_STORAGE_BLOBS_VERSION_MINOR;
|
||||
static constexpr int32_t Minor = AZURE_STORAGE_BLOBS_VERSION_MINOR;
|
||||
|
||||
/// Patch numeric identifier.
|
||||
static constexpr int Patch = AZURE_STORAGE_BLOBS_VERSION_PATCH;
|
||||
static constexpr int32_t Patch = AZURE_STORAGE_BLOBS_VERSION_PATCH;
|
||||
|
||||
/// Indicates whether the SDK is in a pre-release state.
|
||||
static constexpr bool IsPreRelease
|
||||
|
||||
@ -598,7 +598,7 @@ namespace Azure { namespace Storage { namespace Files { namespace DataLake {
|
||||
/**
|
||||
* The maximum number of threads that may be used in a parallel transfer.
|
||||
*/
|
||||
int Concurrency = 5;
|
||||
int32_t Concurrency = 5;
|
||||
} TransferOptions;
|
||||
};
|
||||
|
||||
|
||||
@ -24,13 +24,13 @@ namespace Azure { namespace Storage { namespace Files { namespace DataLake { nam
|
||||
class PackageVersion final {
|
||||
public:
|
||||
/// Major numeric identifier.
|
||||
static constexpr int Major = AZURE_STORAGE_FILES_DATALAKE_VERSION_MAJOR;
|
||||
static constexpr int32_t Major = AZURE_STORAGE_FILES_DATALAKE_VERSION_MAJOR;
|
||||
|
||||
/// Minor numeric identifier.
|
||||
static constexpr int Minor = AZURE_STORAGE_FILES_DATALAKE_VERSION_MINOR;
|
||||
static constexpr int32_t Minor = AZURE_STORAGE_FILES_DATALAKE_VERSION_MINOR;
|
||||
|
||||
/// Patch numeric identifier.
|
||||
static constexpr int Patch = AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH;
|
||||
static constexpr int32_t Patch = AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH;
|
||||
|
||||
/// Indicates whether the SDK is in a pre-release state.
|
||||
static constexpr bool IsPreRelease
|
||||
|
||||
@ -638,7 +638,7 @@ namespace Azure { namespace Storage { namespace Files { namespace Shares {
|
||||
/**
|
||||
* The maximum number of threads that may be used in a parallel transfer.
|
||||
*/
|
||||
int Concurrency = 5;
|
||||
int32_t Concurrency = 5;
|
||||
} TransferOptions;
|
||||
};
|
||||
|
||||
@ -689,7 +689,7 @@ namespace Azure { namespace Storage { namespace Files { namespace Shares {
|
||||
/**
|
||||
* The maximum number of threads that may be used in a parallel transfer.
|
||||
*/
|
||||
int Concurrency = 5;
|
||||
int32_t Concurrency = 5;
|
||||
} TransferOptions;
|
||||
};
|
||||
|
||||
|
||||
@ -23,13 +23,13 @@ namespace Azure { namespace Storage { namespace Files { namespace Shares { names
|
||||
class PackageVersion final {
|
||||
public:
|
||||
/// Major numeric identifier.
|
||||
static constexpr int Major = AZURE_STORAGE_FILES_SHARES_VERSION_MAJOR;
|
||||
static constexpr int32_t Major = AZURE_STORAGE_FILES_SHARES_VERSION_MAJOR;
|
||||
|
||||
/// Minor numeric identifier.
|
||||
static constexpr int Minor = AZURE_STORAGE_FILES_SHARES_VERSION_MINOR;
|
||||
static constexpr int32_t Minor = AZURE_STORAGE_FILES_SHARES_VERSION_MINOR;
|
||||
|
||||
/// Patch numeric identifier.
|
||||
static constexpr int Patch = AZURE_STORAGE_FILES_SHARES_VERSION_PATCH;
|
||||
static constexpr int32_t Patch = AZURE_STORAGE_FILES_SHARES_VERSION_PATCH;
|
||||
|
||||
/// Indicates whether the SDK is in a pre-release state.
|
||||
static constexpr bool IsPreRelease
|
||||
|
||||
Loading…
Reference in New Issue
Block a user