diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 15:02:45 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:42 -0700 |
| commit | bdf80d63c663d6cc512db34be6a96cd9c66aaa99 (patch) | |
| tree | 1ef318ec848d41ff62731fe7eff12e70cde28807 /toolsrc/src/vcpkg.cpp | |
| parent | 378b018321ef443b027fc02e78c57721edc68d94 (diff) | |
| download | vcpkg-bdf80d63c663d6cc512db34be6a96cd9c66aaa99.tar.gz vcpkg-bdf80d63c663d6cc512db34be6a96cd9c66aaa99.zip | |
triplet -> Triplet
Diffstat (limited to 'toolsrc/src/vcpkg.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolsrc/src/vcpkg.cpp b/toolsrc/src/vcpkg.cpp index 6f7060754..4da0a585b 100644 --- a/toolsrc/src/vcpkg.cpp +++ b/toolsrc/src/vcpkg.cpp @@ -69,21 +69,21 @@ static void inner(const vcpkg_cmd_arguments& args) return command_function(args, paths); } - triplet default_target_triplet; + Triplet default_target_triplet; if (args.target_triplet != nullptr) { - default_target_triplet = triplet::from_canonical_name(*args.target_triplet); + default_target_triplet = Triplet::from_canonical_name(*args.target_triplet); } else { const optional<std::wstring> vcpkg_default_triplet_env = System::get_environmental_variable(L"VCPKG_DEFAULT_TRIPLET"); if (auto v = vcpkg_default_triplet_env.get()) { - default_target_triplet = triplet::from_canonical_name(Strings::utf16_to_utf8(*v)); + default_target_triplet = Triplet::from_canonical_name(Strings::utf16_to_utf8(*v)); } else { - default_target_triplet = triplet::X86_WINDOWS; + default_target_triplet = Triplet::X86_WINDOWS; } } |
