aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_Checks.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/src/vcpkg_Checks.cpp')
-rw-r--r--toolsrc/src/vcpkg_Checks.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg_Checks.cpp b/toolsrc/src/vcpkg_Checks.cpp
index d42793caf..8a80e3afe 100644
--- a/toolsrc/src/vcpkg_Checks.cpp
+++ b/toolsrc/src/vcpkg_Checks.cpp
@@ -9,7 +9,7 @@ namespace vcpkg::Checks
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, line_info.to_string()); // 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.to_string());
}
::exit(exit_code);