aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/metrics.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-15 18:58:44 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-15 18:58:44 -0800
commitad197b4a742920e42eb7a1a649c07de417a517ad (patch)
treed172868fcaab3c4fc3e5ec72d73688016167ae04 /toolsrc/src/metrics.cpp
parentc031bda3bd17a465109bdfa3c79146f32382a70b (diff)
downloadvcpkg-ad197b4a742920e42eb7a1a649c07de417a517ad.tar.gz
vcpkg-ad197b4a742920e42eb7a1a649c07de417a517ad.zip
Formatting
Diffstat (limited to 'toolsrc/src/metrics.cpp')
-rw-r--r--toolsrc/src/metrics.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/toolsrc/src/metrics.cpp b/toolsrc/src/metrics.cpp
index 5ef54f15d..4ac43c5c6 100644
--- a/toolsrc/src/metrics.cpp
+++ b/toolsrc/src/metrics.cpp
@@ -32,7 +32,7 @@ namespace vcpkg
static std::string GenerateRandomUUID()
{
- int partSizes[] = {8, 4, 4, 4, 12};
+ int partSizes[] = { 8, 4, 4, 4, 12 };
char uuid[37];
memset(uuid, 0, sizeof(uuid));
int num;
@@ -101,7 +101,7 @@ namespace vcpkg
// Note: this treats incoming Strings as Latin-1
static constexpr const char hex[16] = {
'0', '1', '2', '3', '4', '5', '6', '7',
- '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
+ '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
encoded.append("\\u00");
encoded.push_back(hex[ch / 16]);
encoded.push_back(hex[ch % 16]);
@@ -229,8 +229,10 @@ true
{
LONG err;
- struct RAII_HKEY {
+ struct RAII_HKEY
+ {
HKEY hkey = nullptr;
+
~RAII_HKEY()
{
if (hkey != nullptr)
@@ -244,7 +246,7 @@ true
return L"{}";
}
- std::array<wchar_t,128> buffer;
+ std::array<wchar_t, 128> buffer;
DWORD lType = 0;
DWORD dwBufferSize = static_cast<DWORD>(buffer.size() * sizeof(wchar_t));
err = RegQueryValueExW(HKCU_SQMClient.hkey, L"UserId", nullptr, &lType, reinterpret_cast<LPBYTE>(buffer.data()), &dwBufferSize);
@@ -356,7 +358,6 @@ true
if (bResults)
{
DWORD availableData = 0, readData = 0, totalData = 0;
-
while ((bResults = WinHttpQueryDataAvailable(hRequest, &availableData)) == TRUE && availableData > 0)
{
responseBuffer.resize(responseBuffer.size() + availableData);