diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 17:39:47 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-07 17:39:47 -0700 |
| commit | 9c2287d0e809020ab90157873e56670127441cc1 (patch) | |
| tree | 7ddbc27708c5a4b215ac45c20fdb7632ecfe36a0 /toolsrc/src/commands_ci.cpp | |
| parent | 41c9026875b3d05ee46ca83287aa6fca5b347165 (diff) | |
| download | vcpkg-9c2287d0e809020ab90157873e56670127441cc1.tar.gz vcpkg-9c2287d0e809020ab90157873e56670127441cc1.zip | |
Remove unneeded to_string() calls
Diffstat (limited to 'toolsrc/src/commands_ci.cpp')
| -rw-r--r-- | toolsrc/src/commands_ci.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp index d514d3360..5071effde 100644 --- a/toolsrc/src/commands_ci.cpp +++ b/toolsrc/src/commands_ci.cpp @@ -107,7 +107,7 @@ namespace vcpkg::Commands::CI for (size_t i = 0; i < results.size(); i++) { - System::println("%s: %s: %dms", install_plan[i].spec.to_string(), Build::to_string(results[i]), timing[i]); + System::println("%s: %s: %dms", install_plan[i].spec, Build::to_string(results[i]), timing[i]); } std::map<BuildResult, int> summary; |
