diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 14:41:36 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:41 -0700 |
| commit | 830a4d97d470dad6ca4a27ef1eecce17057fa432 (patch) | |
| tree | 18da4d5de02fc71dc228d70b6877e69ff9280d39 /toolsrc/src/vcpkg_cmd_arguments.cpp | |
| parent | c86dbc960e417659dd652a7448096cd71d95266e (diff) | |
| download | vcpkg-830a4d97d470dad6ca4a27ef1eecce17057fa432.tar.gz vcpkg-830a4d97d470dad6ca4a27ef1eecce17057fa432.zip | |
Rename Metrics:: function to all_lower
Diffstat (limited to 'toolsrc/src/vcpkg_cmd_arguments.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg_cmd_arguments.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolsrc/src/vcpkg_cmd_arguments.cpp b/toolsrc/src/vcpkg_cmd_arguments.cpp index 0e61f39c4..458e7493b 100644 --- a/toolsrc/src/vcpkg_cmd_arguments.cpp +++ b/toolsrc/src/vcpkg_cmd_arguments.cpp @@ -15,7 +15,7 @@ namespace vcpkg if (arg_begin == arg_end) { System::println(System::color::error, "Error: expected value after %s", option_name); - Metrics::TrackProperty("error", "error option name"); + Metrics::track_property("error", "error option name"); Commands::Help::print_usage(); Checks::exit_fail(VCPKG_LINE_INFO); } @@ -23,7 +23,7 @@ namespace vcpkg if (option_field != nullptr) { System::println(System::color::error, "Error: %s specified multiple times", option_name); - Metrics::TrackProperty("error", "error option specified multiple times"); + Metrics::track_property("error", "error option specified multiple times"); Commands::Help::print_usage(); Checks::exit_fail(VCPKG_LINE_INFO); } @@ -39,7 +39,7 @@ namespace vcpkg if (option_field != opt_bool_t::UNSPECIFIED && option_field != new_setting) { System::println(System::color::error, "Error: conflicting values specified for --%s", option_name); - Metrics::TrackProperty("error", "error conflicting switches"); + Metrics::track_property("error", "error conflicting switches"); Commands::Help::print_usage(); Checks::exit_fail(VCPKG_LINE_INFO); } @@ -72,7 +72,7 @@ namespace vcpkg if (arg[0] == '-' && arg[1] != '-') { - Metrics::TrackProperty("error", "error short options are not supported"); + Metrics::track_property("error", "error short options are not supported"); Checks::exit_with_message(VCPKG_LINE_INFO, "Error: short options are not supported: %s", arg); } |
