aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/vcpkg_System.h
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:30:11 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:46 -0700
commit898edccbdcec9345c549945187195b75a9f49212 (patch)
treea685eab6c4867b195afede41e4368f61ee46f9c6 /toolsrc/include/vcpkg_System.h
parent3f76b9e53d48e34960bb5947bbbb880ac806281b (diff)
downloadvcpkg-898edccbdcec9345c549945187195b75a9f49212.tar.gz
vcpkg-898edccbdcec9345c549945187195b75a9f49212.zip
exit_code_and_output -> ExitCodeAndOutput
Diffstat (limited to 'toolsrc/include/vcpkg_System.h')
-rw-r--r--toolsrc/include/vcpkg_System.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg_System.h b/toolsrc/include/vcpkg_System.h
index e4f93ad8f..d1069464b 100644
--- a/toolsrc/include/vcpkg_System.h
+++ b/toolsrc/include/vcpkg_System.h
@@ -9,7 +9,7 @@ namespace vcpkg::System
{
fs::path get_exe_path_of_current_process();
- struct exit_code_and_output
+ struct ExitCodeAndOutput
{
int exit_code;
std::string output;
@@ -19,7 +19,7 @@ namespace vcpkg::System
int cmd_execute(const CWStringView cmd_line);
- exit_code_and_output cmd_execute_and_capture_output(const CWStringView cmd_line);
+ ExitCodeAndOutput cmd_execute_and_capture_output(const CWStringView cmd_line);
std::wstring create_powershell_script_cmd(const fs::path& script_path, const CWStringView args = L"");