aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_Checks.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:47:58 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:47:07 -0700
commitdac8ace7619c863e0f59e4d68623e55ebf71e04d (patch)
treeda1008eaaf0a119a13bb5d36f450f1ae78188892 /toolsrc/src/vcpkg_Checks.cpp
parent2d7beb71e7f35daca1d1ad2d56ea85c39f2bc6e2 (diff)
downloadvcpkg-dac8ace7619c863e0f59e4d68623e55ebf71e04d.tar.gz
vcpkg-dac8ace7619c863e0f59e4d68623e55ebf71e04d.zip
LineInfo::toString() -> LineInfo::to_string()
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);