aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_System.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/src/vcpkg_System.cpp')
-rw-r--r--toolsrc/src/vcpkg_System.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg_System.cpp b/toolsrc/src/vcpkg_System.cpp
index 481f2431e..c48f719e1 100644
--- a/toolsrc/src/vcpkg_System.cpp
+++ b/toolsrc/src/vcpkg_System.cpp
@@ -48,8 +48,8 @@ namespace vcpkg::System
std::vector<CPUArchitecture> supported_architectures;
supported_architectures.push_back(get_host_processor());
- //AMD64 machines support to run x86 applications
- if(supported_architectures.back()==CPUArchitecture::X64)
+ // AMD64 machines support to run x86 applications
+ if (supported_architectures.back() == CPUArchitecture::X64)
{
supported_architectures.push_back(CPUArchitecture::X86);
}
@@ -211,6 +211,8 @@ namespace vcpkg::System
LR"(powershell -NoProfile -ExecutionPolicy Bypass -Command "& {& '%s' %s}")", script_path.native(), args);
}
+ void println() { println(Strings::EMPTY); }
+
void print(const CStringView message) { fputs(message, stdout); }
void println(const CStringView message)