aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_portsdiff.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:20:12 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:44 -0700
commitfb45692adacb8190f216f6b47c312bc52e3c37dc (patch)
tree2fdadbd23bf89bf5c87dc5c49a857690d206a75b /toolsrc/src/commands_portsdiff.cpp
parentcbc2b08ad1a2bd7fe39a50ed00871f75585d0e02 (diff)
downloadvcpkg-fb45692adacb8190f216f6b47c312bc52e3c37dc.tar.gz
vcpkg-fb45692adacb8190f216f6b47c312bc52e3c37dc.zip
VersionDiff.toString() -> VersionDiff.to_string()
Diffstat (limited to 'toolsrc/src/commands_portsdiff.cpp')
-rw-r--r--toolsrc/src/commands_portsdiff.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_portsdiff.cpp b/toolsrc/src/commands_portsdiff.cpp
index e5155a49d..07ce774ec 100644
--- a/toolsrc/src/commands_portsdiff.cpp
+++ b/toolsrc/src/commands_portsdiff.cpp
@@ -146,7 +146,7 @@ namespace vcpkg::Commands::PortsDiff
System::println("\nThe following %d ports were updated:\n", updated_ports.size());
for (const updated_port& p : updated_ports)
{
- System::println("%-20s %-16s", p.port, p.version_diff.toString());
+ System::println("%-20s %-16s", p.port, p.version_diff.to_string());
}
}