aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_System.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-28 12:55:50 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-28 12:55:50 -0700
commit346aa3fab8c02fcabe09b2738a392e62e792b99f (patch)
tree2446160b304c81759439ec9e5fd952edae51005f /toolsrc/src/vcpkg_System.cpp
parent8a1e0b144c26dd7e6e29a9b230936169ca595fed (diff)
downloadvcpkg-346aa3fab8c02fcabe09b2738a392e62e792b99f.tar.gz
vcpkg-346aa3fab8c02fcabe09b2738a392e62e792b99f.zip
[clang-format] Cpp11BracedListStyle: true
Diffstat (limited to 'toolsrc/src/vcpkg_System.cpp')
-rw-r--r--toolsrc/src/vcpkg_System.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/vcpkg_System.cpp b/toolsrc/src/vcpkg_System.cpp
index 7c06759af..abbed587c 100644
--- a/toolsrc/src/vcpkg_System.cpp
+++ b/toolsrc/src/vcpkg_System.cpp
@@ -129,7 +129,7 @@ namespace vcpkg::System
auto pipe = _wpopen(actual_cmd_line.c_str(), L"r");
if (pipe == nullptr)
{
- return { 1, output };
+ return {1, output};
}
while (fgets(buf, 1024, pipe))
{
@@ -137,10 +137,10 @@ namespace vcpkg::System
}
if (!feof(pipe))
{
- return { 1, output };
+ return {1, output};
}
auto ec = _pclose(pipe);
- return { ec, output };
+ return {ec, output};
}
std::wstring create_powershell_script_cmd(const fs::path& script_path, const CWStringView args)