aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_Checks.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:31:00 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:47:00 -0700
commite401799aca7ed685f195157c37849a5b09fffca2 (patch)
tree9f805b9016e5f85992758bf080c6df0574530fe5 /toolsrc/src/vcpkg_Checks.cpp
parent898edccbdcec9345c549945187195b75a9f49212 (diff)
downloadvcpkg-e401799aca7ed685f195157c37849a5b09fffca2.tar.gz
vcpkg-e401799aca7ed685f195157c37849a5b09fffca2.zip
color -> Color
Diffstat (limited to 'toolsrc/src/vcpkg_Checks.cpp')
-rw-r--r--toolsrc/src/vcpkg_Checks.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/toolsrc/src/vcpkg_Checks.cpp b/toolsrc/src/vcpkg_Checks.cpp
index 18154ccf3..d42793caf 100644
--- a/toolsrc/src/vcpkg_Checks.cpp
+++ b/toolsrc/src/vcpkg_Checks.cpp
@@ -8,8 +8,8 @@ namespace vcpkg::Checks
[[noreturn]]
void unreachable(const LineInfo& line_info)
{
- System::println(System::color::error, "Error: Unreachable code was reached");
- System::println(System::color::error, line_info.toString()); // Always print line_info here
+ System::println(System::Color::error, "Error: Unreachable code was reached");
+ System::println(System::Color::error, line_info.toString()); // Always print line_info here
#ifndef NDEBUG
std::abort();
#else
@@ -22,7 +22,7 @@ namespace vcpkg::Checks
{
if (g_debugging)
{
- System::println(System::color::error, line_info.toString());
+ System::println(System::Color::error, line_info.toString());
}
::exit(exit_code);
@@ -31,7 +31,7 @@ namespace vcpkg::Checks
[[noreturn]]
void exit_with_message(const LineInfo& line_info, const CStringView errorMessage)
{
- System::println(System::color::error, errorMessage);
+ System::println(System::Color::error, errorMessage);
exit_fail(line_info);
}