diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 15:44:46 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:43 -0700 |
| commit | 23e3397b2f8336d374d06e2dd6ab7233c9873b77 (patch) | |
| tree | f1042922af466aff45be7f7ffb770e3ab7e9348c /toolsrc/src/commands_ci.cpp | |
| parent | cf3ee7c2a5adc88493f3a597a967bfcff369777f (diff) | |
| download | vcpkg-23e3397b2f8336d374d06e2dd6ab7233c9873b77.tar.gz vcpkg-23e3397b2f8336d374d06e2dd6ab7233c9873b77.zip | |
ElapsedTime: rename function to all_lower
Diffstat (limited to 'toolsrc/src/commands_ci.cpp')
| -rw-r--r-- | toolsrc/src/commands_ci.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp index d94949d4f..7a818337c 100644 --- a/toolsrc/src/commands_ci.cpp +++ b/toolsrc/src/commands_ci.cpp @@ -41,12 +41,12 @@ namespace vcpkg::Commands::CI std::vector<BuildResult> results; std::vector<std::chrono::milliseconds::rep> timing; - const ElapsedTime timer = ElapsedTime::createStarted(); + const ElapsedTime timer = ElapsedTime::create_started(); size_t counter = 0; const size_t package_count = install_plan.size(); for (const package_spec_with_install_plan& action : install_plan) { - const ElapsedTime build_timer = ElapsedTime::createStarted(); + const ElapsedTime build_timer = ElapsedTime::create_started(); counter++; System::println("Starting package %d/%d: %s", counter, package_count, action.spec.toString()); @@ -92,10 +92,10 @@ namespace vcpkg::Commands::CI System::println(System::color::error, "Error: Could not install package %s: %s", action.spec, e.what()); results.back() = BuildResult::NULLVALUE; } - System::println("Elapsed time for package %s: %s", action.spec, build_timer.toString()); + System::println("Elapsed time for package %s: %s", action.spec, build_timer.to_string()); } - System::println("Total time taken: %s", timer.toString()); + System::println("Total time taken: %s", timer.to_string()); for (size_t i = 0; i < results.size(); i++) { |
