aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-17 20:08:29 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-17 20:08:29 -0800
commitac2ec94129ae0bdbcb16c0c2333fbfc52844d6c6 (patch)
tree75c2ea10139fe56248c2d822effd904a9ff42c4f /toolsrc/src/vcpkg.cpp
parent7ae6c2152686467ab81663e6d7d259f475c0229d (diff)
downloadvcpkg-ac2ec94129ae0bdbcb16c0c2333fbfc52844d6c6.tar.gz
vcpkg-ac2ec94129ae0bdbcb16c0c2333fbfc52844d6c6.zip
Change Info::version() to Version::version()
Diffstat (limited to 'toolsrc/src/vcpkg.cpp')
-rw-r--r--toolsrc/src/vcpkg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg.cpp b/toolsrc/src/vcpkg.cpp
index 153109053..16c9cb077 100644
--- a/toolsrc/src/vcpkg.cpp
+++ b/toolsrc/src/vcpkg.cpp
@@ -192,7 +192,7 @@ int wmain(const int argc, const wchar_t* const* const argv)
Flush();
});
- TrackProperty("version", Info::version());
+ TrackProperty("version", Commands::Version::version());
const std::string trimmed_command_line = trim_path_from_command_line(Strings::utf16_to_utf8(GetCommandLineW()));
TrackProperty("cmdline", trimmed_command_line);
@@ -238,7 +238,7 @@ int wmain(const int argc, const wchar_t* const* const argv)
<< " " << Info::email() << "\n"
<< "containing a brief summary of what you were trying to do and the following data blob:\n"
<< "\n"
- << "Version=" << Info::version() << "\n"
+ << "Version=" << Commands::Version::version() << "\n"
<< "EXCEPTION='" << exc_msg << "'\n"
<< "CMD=\n";
for (int x = 0; x < argc; ++x)